From 926e60cb632b0ce1b9a129f1a9b74b0da949f703 Mon Sep 17 00:00:00 2001 From: tiniscule <114822071+tiniscule@users.noreply.github.com> Date: Sat, 2 Dec 2023 12:23:51 -0700 Subject: [PATCH] check for cache hit --- .github/workflows/dbdev.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dbdev.yml b/.github/workflows/dbdev.yml index 7abca63..da3680a 100644 --- a/.github/workflows/dbdev.yml +++ b/.github/workflows/dbdev.yml @@ -9,6 +9,7 @@ jobs: with: toolchain: stable - name: Cache dbdev + id: cache-dbdev uses: actions/cache@v2 with: path: ~/.cargo/bin/dbdev @@ -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: