Skip to content

Commit

Permalink
let's go again
Browse files Browse the repository at this point in the history
  • Loading branch information
MJRichardson committed Nov 12, 2023
1 parent 5dec7b9 commit 06f61c3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build-and-push-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,8 @@ jobs:
id: image-tag
run: |
tag="${{ steps.branch-name.outputs.current_branch }}.${{ github.run_id }}"
echo "image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:$tag" >> ${GITHUB_ENV}
echo "tag=$tag" >> ${GITHUB_ENV}
echo "tag=$tag"
echo "image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:$tag" >> $GITHUB_ENV
echo "tag=$tag" >> $GITHUB_ENV
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand All @@ -78,7 +77,7 @@ jobs:
with:
context: .
push: true
tags: ${{steps.image-tag.outputs.image}}
tags: ${{ env.tag }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 06f61c3

Please sign in to comment.