diff --git a/.github/actions/restore_dbt_cache/action.yaml b/.github/actions/restore_dbt_cache/action.yaml index 1f3f0f29a..8104a454e 100644 --- a/.github/actions/restore_dbt_cache/action.yaml +++ b/.github/actions/restore_dbt_cache/action.yaml @@ -59,6 +59,7 @@ runs: } >> $GITHUB_OUTPUT fi fi + shell: bash env: KEY: ${{ inputs.key }} RESTORE_KEY: ${{ inputs.restore-key }} @@ -68,6 +69,7 @@ runs: - if: steps.query-cache-keys.outputs.cache-hit == 'true' name: Copy cache to path run: aws s3 cp "s3://$BUCKET/$KEY/manifest.json" "$PATH/manifest.json" + shell: bash env: KEY: ${{ steps.query-cache-keys.outputs.cache-matched-key }} PATH: ${{ inputs.path }} diff --git a/.github/actions/save_dbt_cache/action.yaml b/.github/actions/save_dbt_cache/action.yaml index 6d58b2f9b..c1e21715f 100644 --- a/.github/actions/save_dbt_cache/action.yaml +++ b/.github/actions/save_dbt_cache/action.yaml @@ -16,6 +16,7 @@ runs: steps: - name: Save dbt cache run: aws s3 cp "$PATH/manifest.json" "s3://$BUCKET/$KEY/manifest.json" + shell: bash env: KEY: ${{ inputs.key }} PATH: ${{ inputs.path }}