Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
WilfredTA committed May 22, 2022
1 parent 6cca5a0 commit 9eb13e4
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ jobs:
needs: compare_latest_tag_and_current_version
if: |
(needs.compare_latest_tag_and_current_version.outputs.current_version !=
needs.compare_latest_tag_and_current_version.outputs.latest_version) &&
(needs.compare_latest_tag_and_current_version.outputs.latest_version != '0.0.0')
needs.compare_latest_tag_and_current_version.outputs.latest_version)
outputs:
version: ${{ steps.version.outputs.version }}
upload_url: ${{ steps.create_release.outputs.upload_url }}
Expand Down Expand Up @@ -61,8 +60,7 @@ jobs:
needs: [generate-release, compare_latest_tag_and_current_version]
if: |
(needs.compare_latest_tag_and_current_version.outputs.current_version !=
needs.compare_latest_tag_and_current_version.outputs.latest_version) &&
(needs.compare_latest_tag_and_current_version.outputs.latest_version != '0.0.0')
needs.compare_latest_tag_and_current_version.outputs.latest_version)
steps:
- uses: actions/checkout@v2
- name: Install pre-requisites
Expand Down Expand Up @@ -90,8 +88,7 @@ jobs:
needs: [generate-release, compare_latest_tag_and_current_version]
if: |
(needs.compare_latest_tag_and_current_version.outputs.current_version !=
needs.compare_latest_tag_and_current_version.outputs.latest_version) &&
(needs.compare_latest_tag_and_current_version.outputs.latest_version != '0.0.0')
needs.compare_latest_tag_and_current_version.outputs.latest_version)
steps:
- uses: actions/checkout@v2
- name: Install pre-requisites
Expand Down

0 comments on commit 9eb13e4

Please sign in to comment.