ci: Fix bugs in nightly docker publishing (#1520)

This commit is contained in:
Sergey Kuznetsov
2024-07-05 15:04:08 +01:00
committed by GitHub
parent 29847caf0e
commit d536433d64
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ runs:
if: ${{ inputs.push_image == 'true' }}
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ env.DOCKERHUB_USERNAME }}
username: ${{ env.DOCKERHUB_USER }}
password: ${{ env.DOCKERHUB_PW }}
repository: ${{ inputs.image_name }}
short-description: ${{ inputs.description }}

View File

@@ -189,7 +189,7 @@ jobs:
publish_image: ${{ github.event_name != 'pull_request' }}
create_issue_on_failure:
needs: [build, run_tests, nightly_release]
needs: [build, run_tests, nightly_release, build_and_publish_docker_image]
if: ${{ always() && contains(needs.*.result, 'failure') && github.event_name != 'pull_request' }}
runs-on: ubuntu-20.04
permissions: