Skip to content

Commit

Permalink
ci: removes cache feature
Browse files Browse the repository at this point in the history
I can't understand its functionality, and also it doesn't look really efficient with bun (oven-sh/setup-bun#14 (comment))
  • Loading branch information
DavDeDev committed May 4, 2024
1 parent 5b00c6c commit b9ab6d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/my-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
path: |
~/.bun/install/cache
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
key: ${{ runner.os }}-nextjs-${{ hashFiles('bun.lockb') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/bun.lockb') }}-
${{ runner.os }}-nextjs-${{ hashFiles('bun.lockb') }}-
- uses: actions/checkout@v4
- run: bun install
- run: bun run build
Expand Down

0 comments on commit b9ab6d2

Please sign in to comment.