Skip to content

Commit

Permalink
Fix cd action (#1638)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino authored Dec 2, 2024
1 parent 1a2d11b commit 2028d17
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-1-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-1-
key: ${{ runner.os }}-mix-2-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-2-
- name: Restore _build
uses: actions/cache@v3
with:
path: _build
key: ${{ runner.os }}-mix-1-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-1-
key: ${{ runner.os }}-mix-2-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-2-
# - name: download jwt verification key
# run: |
# echo $JWT_PUBLIC_KEY > config/pubkey.pem
Expand Down

0 comments on commit 2028d17

Please sign in to comment.