Skip to content

remove external gh action dependency #4

remove external gh action dependency

remove external gh action dependency #4

Workflow file for this run

name: Deploy Site
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run : yarn install --frozen-lockfile # install deps
shell: bash
- run : yarn build # build the site
shell: bash
- run : git config user.name github-actions
shell: bash
- run : git config user.email github-actions@github.com
shell: bash
- run : git --work-tree build add --all
shell: bash
- run : git commit -m "Deploy ${{ env.sha_short }} :rocket:"
shell: bash
- run : git push origin HEAD:gh-pages --force
shell: bash