Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:

- name: Build and push Docker image
run: |
set -e
# Convert repository name to lowercase
export IMAGE_NAME=$(echo ${{ env.IMAGE_NAME }} | tr '[:upper:]' '[:lower:]')
# Set the image name with registry and tag
export IMG=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}
export IMG=${{ env.REGISTRY }}/$IMAGE_NAME:${{ github.ref_name }}
# Build and push using make target
make docker-buildx
make docker-buildx
Loading