update dependencies (#1332) #388
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-pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
gh-release: | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
cache: "yarn" | |
- name: Build Static Files | |
env: | |
USE_SSH: true | |
GIT_USER: git | |
DEPLOYMENT_BRANCH: gh-pages | |
run: | | |
git config --global user.email "actions@github.com" | |
git config --global user.name "gh-actions" | |
yarn install | |
yarn build | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: build/ | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |