Update publish.yml Maybe fixing path problems #95
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: Build and Deploy | |
on: | |
push: | |
branches: ['master'] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Files | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Use Node.js 12.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Build Site | |
run: | | |
npm install | |
npm run build | |
- name: Upload Artifacts 🔺 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: build | |
deploy: | |
name: Deploy Site | |
needs: [build] # The second job must depend on the first one to complete before running, and uses ubuntu-latest instead of windows. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Download Artifacts 🔻 | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: build | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: build | |
single-commit: true | |