Skip to content

Commit

Permalink
fixup! Filtering pr - building preview only on specific labels
Browse files Browse the repository at this point in the history
  • Loading branch information
lukdog committed May 8, 2024
1 parent b3d6813 commit f5720a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,18 @@ jobs:
id: gatsby-cache-folder
with:
path: .cache
key: ${{ runner.os }}-cache-gatsbyV2-vercel-${{ github.sha }}
key: ${{ runner.os }}-cache-gatsbyV2-${{ github.sha }}
restore-keys: |
${{ runner.os }}-cache-gatsbyV2-vercel-
${{ runner.os }}-cache-gatsbyV2-
- name: Gatsby Public Folder
uses: actions/cache@v4
id: gatsby-public-folder
with:
path: public/
key: ${{ runner.os }}-public-gatsbyV2-vercel-${{ github.sha }}
key: ${{ runner.os }}-public-gatsbyV2-${{ github.sha }}
restore-keys: |
${{ runner.os }}-public-gatsbyV2-vercel-
${{ runner.os }}-public-gatsbyV2-
- run: npm install
- run: npm run build
Expand Down

0 comments on commit f5720a2

Please sign in to comment.