Skip to content

Commit

Permalink
github: Do not fully qualify the image name during build
Browse files Browse the repository at this point in the history
  • Loading branch information
travier committed Oct 6, 2023
1 parent fd48266 commit 6378604
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/filebrowser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
uses: redhat-actions/buildah-build@v2
with:
context: ${{ env.IMAGE_NAME }}
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: ${{ github.sha }}
image: ${{ env.IMAGE_NAME }}
tags: latest ${{ github.sha }}
containerfiles: ${{ env.IMAGE_NAME }}/Containerfile
layers: false
oci: true
Expand All @@ -52,6 +52,6 @@ jobs:
with:
username: ${{ secrets.BOT_USERNAME }}
password: ${{ secrets.BOT_SECRET }}
image: ${{ env.IMAGE_NAME }}:${{ github.sha }}
image: ${{ env.IMAGE_NAME }}
registry: ${{ env.REGISTRY }}
tags: latest ${{ github.sha }}

0 comments on commit 6378604

Please sign in to comment.