Update publish.yml (#119) #83
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: | |
- "production" | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Disable CorePack for yarn | |
run: corepack disable yarn | |
- name: Enable CorePack for pnpm | |
run: corepack enable pnpm | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
check-latest: true | |
- name: Clear Corepack Cache | |
run: corepack prepare pnpm@latest --activate | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Ensure Clean Slate | |
run: | | |
if [ -d "node_modules" ]; then rm -rf node_modules; fi | |
if [ -f "pnpm-lock.yaml" ]; then rm pnpm-lock.yaml; fi | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build using pnpm | |
run: pnpm run build | |
env: | |
NITRO_PRESET: github_pages | |
- name: Upload Pages Artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./.output/public | |
deploy: | |
needs: build | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github_pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |