From 01d809e33a9404be9356e01c6336bfc0fd08829a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Nussbaumer?= Date: Tue, 28 Mar 2023 14:37:34 +0200 Subject: [PATCH] chore(gh-action): rename misnamed check-dockerhub-token job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [skip ci] Signed-off-by: Clément Nussbaumer --- .github/workflows/publish.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index dae132d..aabe1a5 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -3,7 +3,7 @@ name: Publish on: [push] jobs: - check-gh-token: + check-dockerhub-token: runs-on: ubuntu-latest outputs: HAS_DOCKERHUB_TOKEN: ${{ steps.gh-token.outputs.HAS_DOCKERHUB_TOKEN }} @@ -110,11 +110,11 @@ jobs: needs: - lint - test - - check-gh-token + - check-dockerhub-token if: | startsWith(github.ref, 'refs/tags/v') && !github.event.pull_request.head.repo.fork && - needs.check-gh-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' + needs.check-dockerhub-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -142,11 +142,11 @@ jobs: needs: - lint - test-helm - - check-gh-token + - check-dockerhub-token if: | startsWith(github.ref, 'refs/tags/v') && !github.event.pull_request.head.repo.fork && - needs.check-gh-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' + needs.check-dockerhub-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -168,11 +168,11 @@ jobs: needs: - lint - test - - check-gh-token + - check-dockerhub-token if: | github.ref == 'refs/heads/main' && !github.event.pull_request.head.repo.fork && - needs.check-gh-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' + needs.check-dockerhub-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -199,11 +199,11 @@ jobs: needs: - lint - test - - check-gh-token + - check-dockerhub-token if: | startsWith(github.ref, 'refs/heads/feat') && !github.event.pull_request.head.repo.fork && - needs.check-gh-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' + needs.check-dockerhub-token.outputs.HAS_DOCKERHUB_TOKEN == 'true' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3