Skip to content

reddit split version / data tests #32

reddit split version / data tests

reddit split version / data tests #32

Workflow file for this run

name: Github Pages
# By default, runs if you push to main. keeps your deployed app in sync with main branch.
on:
push:
branches:
- main
# to only run when you do a new github release, comment out above part and uncomment the below trigger.
# on:
# release:
# types:
# - published
permissions:
contents: write # for committing to gh-pages branch.
jobs:
build-github-pages:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4 # repo checkout
- name: Build and deploy
uses: shalzz/zola-deploy-action@master
env:
PAGES_BRANCH: gh-pages
TOKEN: ${{ secrets.GITHUB_TOKEN }}