Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
davema-clan committed May 13, 2024
1 parent 8a99b07 commit 9a74113
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/hello-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
if: ${{ github.ref_type == 'tag' }}

env:
IMAGE_SHA: ${{ needs.GetSHA.outputs.IMAGE_SHA}}
IMAGE_NAME: ${{ needs.GetSHA.outputs.IMAGE_NAME}}
IMAGE_SHA: ${{ needs.GetENV.outputs.IMAGE_SHA}}
IMAGE_NAME: ${{ needs.GetENV.outputs.IMAGE_NAME}}

steps:
- name: Get Tag Name
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/hello.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:

env:

IMAGE_SHA: ${{ needs.GetSHA.outputs.IMAGE_SHA}}
IMAGE_NAME: ${{ needs.GetSHA.outputs.IMAGE_NAME}}
IMAGE_SHA: ${{ needs.GetENV.outputs.IMAGE_SHA}}
IMAGE_NAME: ${{ needs.GetENV.outputs.IMAGE_NAME}}

steps:
- name: Checkout repository
Expand All @@ -54,7 +54,6 @@ jobs:

- name: Build images
run:
echo $IMAGE_SHA $IMAGE_NAME
make build ARGS="${REGISTRY}/" IMAGE_TAG="${IMAGE_SHA}" IMAGE_NAME=${IMAGE_NAME}

- name: Push images to repository
Expand Down

0 comments on commit 9a74113

Please sign in to comment.