workflow修正 #4
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 to GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Print current directory | |
run: pwd | |
- name: Clear npm cache and reinstall dependencies | |
run: | | |
cd ./front | |
npm install | |
- name: Print current directory | |
run: pwd | |
- name: Build project | |
run: | | |
cd ./front | |
npm run build | |
- name: Print current directory | |
run: pwd | |
- name: Deploy to GitHub Pages | |
run: | | |
cd ./front | |
npm run deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |