Skip to content

Commit

Permalink
ci: get image_tag instead of image_name from output
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Oct 20, 2023
1 parent cfe9c1f commit 14ea453
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/r-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
done
# Cache backend build
image=${{ needs.backend-test-build.outputs.image_name || inputs.image_tag }}
image=${{ needs.backend-test-build.outputs.image_tag || inputs.image_tag }}
pull_and_package_image "$image"
- name: Load Cached Imgs
Expand All @@ -114,7 +114,7 @@ jobs:
- name: Vars and Secrets to Env
env:
API_TAG_OVERRIDE: ${{ needs.backend-test-build.outputs.image_name || inputs.image_tag }}
API_TAG_OVERRIDE: ${{ needs.backend-test-build.outputs.image_tag || inputs.image_tag }}
GIT_BRANCH: ${{ github.ref_name }}
VARS_CONTEXT: ${{ toJson(vars) }}
SECRETS_CONTEXT: ${{ toJson(secrets) }}
Expand Down

0 comments on commit 14ea453

Please sign in to comment.