Skip to content

Commit

Permalink
check for cache hit
Browse files Browse the repository at this point in the history
  • Loading branch information
tiniscule committed Dec 2, 2023
1 parent c0ba5f7 commit 926e60c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/dbdev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
with:
toolchain: stable
- name: Cache dbdev
id: cache-dbdev
uses: actions/cache@v2
with:
path: ~/.cargo/bin/dbdev
Expand All @@ -19,7 +20,7 @@ jobs:
with:
command: install
args: --git https://github.com/supabase/dbdev.git dbdev
if: steps.cache.outputs.cache-hit != 'true'
if: steps.cache-dbdev.outputs.cache-hit != 'true'
- name: Create build-output artifact
uses: actions/upload-artifact@master
with:
Expand Down

0 comments on commit 926e60c

Please sign in to comment.