更新workflow #11
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: Pages | |
on: | |
push: | |
branches: | |
- master # default branch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# If your repository depends on submodule, please see: https://github.com/actions/checkout | |
submodules: recursive | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Cache NPM dependencies | |
uses: actions/cache@v2 | |
with: | |
path: node_modules | |
key: ${{ runner.OS }}-npm-cache | |
restore-keys: | | |
${{ runner.OS }}-npm-cache | |
- name: Install Dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Upload Pages artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: ./public | |
- name: Deploy to Github Pages | |
env: | |
GIT_NAME: phantooom | |
GIT_EMAIL: xiaorui.zou@gmail.com | |
run: | | |
git config --global init.defaultBranch master | |
git config --global user.name $GIT_NAME | |
git config --global user.email $GIT_EMAIL | |
cd public && git init && git add . | |
git commit -m "Site deployed by GitHub Actions" | |
git remote add blog https://${{ secrets.action }}@github.com/phantooom/phantooom.github.io.git | |
git push --force --quiet blog master |