Skip to content

Commit

Permalink
Merge pull request #4190 from coralproject/ra-gha-hot-fix-1
Browse files Browse the repository at this point in the history
Fixing failed GHA deployment
  • Loading branch information
Robin Aguilar authored Mar 23, 2023
2 parents 7c41713 + bad0d82 commit 4e4e718
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,25 +112,25 @@ jobs:
uses: docker/build-push-action@v3
with:
push: true
tags: ${{ env.IMAGE_REPOSITORY }}:${MAJOR_TAG}
tags: ${{ env.IMAGE_REPOSITORY }}:${{ env.MAJOR_TAG }}
build-args: |
REVISION_HASH=${GITHUB_SHA}
REVISION_HASH=${{ env.GITHUB_SHA }}
-
name: Build, Tag, Push Minor Tag
uses: docker/build-push-action@v3
with:
push: true
tags: ${{ env.IMAGE_REPOSITORY }}:${MINOR_TAG}
tags: ${{ env.IMAGE_REPOSITORY }}:${{ env.MINOR_TAG }}
build-args: |
REVISION_HASH=${GITHUB_SHA}
REVISION_HASH=${{ env.GITHUB_SHA }}
-
name: Build, Tag, Push Patch Tag
uses: docker/build-push-action@v3
with:
push: true
tags: ${{ env.IMAGE_REPOSITORY }}:${{ env.PATCH_TAG }}
build-args: |
REVISION_HASH=${GITHUB_SHA}
REVISION_HASH=${{ env.GITHUB_SHA }}
-
name: Deploy Static Assets to GCS Bucket
run: |
Expand Down

0 comments on commit 4e4e718

Please sign in to comment.