diff --git a/.github/workflows/workflow-docker-release.yml b/.github/workflows/workflow-docker-release.yml index 80b0db6..523ac1c 100644 --- a/.github/workflows/workflow-docker-release.yml +++ b/.github/workflows/workflow-docker-release.yml @@ -84,6 +84,8 @@ jobs: tags: ghcr.io/${{ github.repository }}:${{ steps.generate_temporary_tag_name.outputs.test_tag }} build-args: | RELEASETAG=${{ steps.identify_github_release_tag_name.outputs.tag }} + attempt_limit: 3 + attempt_delay: 600000 - name: Run tests using previously built image shell: bash run: | @@ -103,3 +105,5 @@ jobs: tags: ${{ github.repository }}:latest, ${{ github.repository }}:${{ steps.identify_github_release_tag_name.outputs.tag }}, quay.io/${{ github.repository }}:latest, quay.io/${{ github.repository }}:${{ steps.identify_github_release_tag_name.outputs.tag }}, ghcr.io/${{ github.repository }}:latest, ghcr.io/${{ github.repository }}:${{ steps.identify_github_release_tag_name.outputs.tag }}, registry.gitlab.com/${{ github.repository }}:latest, registry.gitlab.com/${{ github.repository }}:${{ steps.identify_github_release_tag_name.outputs.tag }} build-args: | RELEASETAG=${{ steps.identify_github_release_tag_name.outputs.tag }} + attempt_limit: 3 + attempt_delay: 600000