12345678910111213141516171819202122232425262728293031323334 |
- # Created by MichaelCurrin
- # https://gist.github.com/MichaelCurrin/a698731096f78240f653faf9a9127cba
- name: Build and deploy
- on:
- push:
- branches:
- - master
- jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/setup-node@v3
- with:
- node-version: 16
- - name: Checkout 🛎️
- uses: actions/checkout@master
- with:
- persist-credentials: false
- - name: Install 🔧
- run: yarn install
- - name: Build 🏗️
- run: |
- yarn build
- - name: Deploy to GH Pages 🚀
- uses: peaceiris/actions-gh-pages@v3
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: dist
|