From 935b111322530899f94666dc0083d9fd01149bff Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Fri, 14 May 2021 19:12:34 +0100 Subject: [PATCH] refactor: remove `git-tag` job's guard conditions These guard conditions are now superfluous because the `git-tag` job depends on the `releases` job. PR: #43 --- .github/workflows/containers.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index 6ceab4a..0923f79 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -271,14 +271,11 @@ jobs: needs: - tags - releases - if: ${{ startsWith(github.ref, 'refs/tags') }} runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - if: ${{ github.ref == format('refs/tags/{0}', needs.tags.outputs.release-trigger) }} - name: Tag - if: ${{ github.ref == format('refs/tags/{0}', needs.tags.outputs.release-trigger) }} env: TAG: ${{ needs.tags.outputs.major-minor }} run: |