diff --git a/.github/workflows/publish_container.yml b/.github/workflows/publish_container.yml index b2e5aafc0..4531de6bc 100644 --- a/.github/workflows/publish_container.yml +++ b/.github/workflows/publish_container.yml @@ -56,7 +56,7 @@ jobs: - name: Pull PR containers run : | - for t in -download -postgres -rabbitmq -sftp-inbox; do + for t in -download -postgres -rabbitmq -sftp-inbox -doa; do docker pull ghcr.io/${{ github.repository }}:PR${{ github.event.number }}$t done docker pull ghcr.io/${{ github.repository }}:PR${{ github.event.number }} @@ -86,6 +86,11 @@ jobs: docker tag ghcr.io/${{ github.repository }}:PR${{ github.event.number }} ghcr.io/${{ github.repository }}:${{ needs.tag_release.outputs.tag }} docker push ghcr.io/${{ github.repository }}:${{ needs.tag_release.outputs.tag }} + - name: Retag PR image for doa + run: | + docker tag ghcr.io/${{ github.repository }}:PR${{ github.event.number }}-doa ghcr.io/${{ github.repository }}:${{ needs.tag_release.outputs.tag }}-doa + docker push ghcr.io/${{ github.repository }}:${{ needs.tag_release.outputs.tag }}-doa + bump_chart_version: needs: [tag_release, push_to_registry] if: ${{ needs.tag_release.outputs.tag != '' && needs.push_to_registry.result == 'success' }}