Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/push_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ jobs:
with:
push-to-registry: true
tag-prefix: ghcr.io/${{ github.repository }}/
platforms: linux/amd64,linux/arm64
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ jobs:
- confluence-importer
needs:
- upstream-workflows
- build-container-images
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- uses: docker/login-action@v3
with:
registry: ghcr.io
Expand All @@ -87,11 +91,10 @@ jobs:

- name: Promote Image
run: |
docker pull ghcr.io/${{ github.repository }}/${{ matrix.image }}:commit-${{ github.sha }}
docker tag ghcr.io/${{ github.repository }}/${{ matrix.image }}:commit-${{ github.sha }} ghcr.io/${{ github.repository }}/${{ matrix.image }}:${{ steps.extract_ref.outputs.ref_name }}
docker tag ghcr.io/${{ github.repository }}/${{ matrix.image }}:commit-${{ github.sha }} ghcr.io/${{ github.repository }}/${{ matrix.image }}:latest
docker push ghcr.io/${{ github.repository }}/${{ matrix.image }}:${{ steps.extract_ref.outputs.ref_name }}
docker push ghcr.io/${{ github.repository }}/${{ matrix.image }}:latest
docker buildx imagetools create \
--tag ghcr.io/${{ github.repository }}/${{ matrix.image }}:${{ steps.extract_ref.outputs.ref_name }} \
--tag ghcr.io/${{ github.repository }}/${{ matrix.image }}:latest \
ghcr.io/${{ github.repository }}/${{ matrix.image }}:commit-${{ github.sha }}

publish-helm-chart:
name: Publish Helm Chart
Expand Down