Skip to content

更新workflow

更新workflow #10

Workflow file for this run

name: Pages
on:
push:
branches:
- master # default branch
jobs:
build:
runs-on: ubuntu-latest
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
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- 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