Skip to content

Commit

Permalink
add sda-doa to publish_container.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Parisa68 committed Feb 20, 2025
1 parent c650166 commit b3d91fd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/publish_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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' }}
Expand Down

0 comments on commit b3d91fd

Please sign in to comment.