Skip to content

Commit

Permalink
Debugging github actions, disable pnpm cache
Browse files Browse the repository at this point in the history
  • Loading branch information
foot committed Feb 9, 2024
1 parent f9b475b commit 4d63a1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/github-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy static content to Pages

on:
push:
branches: ['main']
branches: ["main"]
workflow_dispatch:

permissions:
Expand All @@ -11,7 +11,7 @@ permissions:
id-token: write

concurrency:
group: 'pages'
group: "pages"
cancel-in-progress: true

jobs:
Expand All @@ -27,7 +27,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm' # Specify cache for pnpm
# cache: 'pnpm' # Specify cache for pnpm
- name: Install pnpm
run: npm install -g pnpm # Install pnpm globally
- name: Install dependencies
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './dist'
path: "./dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 4d63a1c

Please sign in to comment.