Skip to content

Commit

Permalink
Fix cache path
Browse files Browse the repository at this point in the history
  • Loading branch information
S4G4R committed Nov 23, 2023
1 parent fd7e074 commit 9ac31a0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/fly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.m2/repository
path: |
/usr/src/app/.m2/repository
/usr/src/app/node_modules
key: cljdeps-${{ hashFiles('project.clj') }}
restore-keys: cljdeps-
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: |
cljdeps-
npm-
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --build-arg HYPERFIDDLE_ELECTRIC_APP_VERSION=$(git describe --tags --long --always --dirty)
- run: flyctl scale memory 512

0 comments on commit 9ac31a0

Please sign in to comment.