replace boilerplate meta description #10
This file contains 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: GH Pages deploy | |
on: | |
push: | |
branches: [ "main" ] | |
permissions: write-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- uses: actions/configure-pages@v3 | |
- name: install dependencies | |
run: npm i | |
- name: build app | |
run: | | |
npm run build | |
mv ./build ./_site | |
- uses: actions/upload-pages-artifact@v2 | |
- uses: actions/deploy-pages@v2 | |