Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
atty303 committed May 10, 2024
1 parent 78a03fa commit ee1324d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
- name: Cache node_modules
uses: actions/cache@v4
with:
path: packages/*/node_modules
path: |
packages/driver/node_modules
packages/web/node_modules
key: "${{ runner.os }}-node-modules-${{ hashFiles('bun.lockb') }}"
restore-keys: |
${{ runner.os }}-node-modules-
Expand All @@ -60,7 +62,7 @@ jobs:
run: bun run deploy
working-directory: packages/web
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

0 comments on commit ee1324d

Please sign in to comment.