Skip to content

Commit

Permalink
refactor: remove git-tag job's guard conditions
Browse files Browse the repository at this point in the history
These guard conditions are now superfluous because the `git-tag` job depends on the `releases` job.

PR: #43
  • Loading branch information
innovaker committed May 20, 2021
1 parent 30b4589 commit 935b111
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 935b111

Please sign in to comment.