Create HuoT24online.yml (#36) #183
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish on main push | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3.6.0 | |
with: | |
node-version: 18 | |
- name: Compose Data | |
run: yarn && node scripts/composeData.js | |
- name: Gatsby Publish | |
uses: enriikke/gatsby-gh-pages-action@v2.2.0 | |
with: | |
access-token: ${{ secrets.DEPLOY }} | |
deploy-branch: deploy | |
skip-publish: false |