Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
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
11 changes: 9 additions & 2 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ jobs:
echo "LIQUIBASE_VERSION=$LIQUIBASE_VERSION" >> $GITHUB_OUTPUT
echo "Latest Liquibase version: $LIQUIBASE_VERSION"

- name: Set lowercase image name
id: image-name
run: |
IMAGE_NAME_LOWER=$(echo "${{ env.IMAGE_NAME }}" | tr '[:upper:]' '[:lower:]')
echo "image-name=$IMAGE_NAME_LOWER" >> $GITHUB_OUTPUT
echo "Image name: $IMAGE_NAME_LOWER"

- name: Log in to Container Registry
uses: docker/login-action@v3
with:
Expand All @@ -41,7 +48,7 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
images: ${{ env.REGISTRY }}/${{ steps.image-name.outputs.image-name }}
tags: |
type=raw,value=latest
type=ref,event=tag
Expand All @@ -61,7 +68,7 @@ jobs:
push: true
tags: |
${{ steps.meta.outputs.tags }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.additional-tags.outputs.version-tag }}
${{ env.REGISTRY }}/${{ steps.image-name.outputs.image-name }}:${{ steps.additional-tags.outputs.version-tag }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
build-args: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Build test image
run: |
docker build -t migkit/liquibase-migrator:test ./liquibase-migrator
docker build -t opsguild/migkit/liquibase-migrator:test ./liquibase-migrator

- name: Start test services
run: |
Expand Down
Loading