Change prize #33
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: deploy-gh-pages | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Prepare CI | |
run: yarn | |
- name: Build react project | |
run: yarn react:build | |
- name: Deploy with GitHub Pages v3 | |
uses: peaceiris/[email protected] | |
with: | |
publish_dir: build/ | |
github_token: ${{ secrets.SGICPC_API_KEY }} |