This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
Fix founding year #213
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: Release | |
on: | |
push: | |
branches: master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2.1.2 | |
with: | |
node-version: '12.x' | |
- run: npm ci | |
- run: npm run init | |
- env: | |
GCP_API_KEY: ${{ secrets.GCP_API_KEY }} | |
run: npm run generate:session | |
- run: npm run generate:mail | |
- run: npm run build | |
- run: npm run redirect:qa | |
- run: npm run redirect:record | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
force_orphan: true |