Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
snf2ye committed Aug 8, 2023
1 parent f0ea23d commit 0235208
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ jobs:
tag:
needs: [ build, unit-tests-and-sonarqube, source-clear ]
uses: ./.github/workflows/tag.yml
if: ${{ success() && env.RUN_PUBLISH }}
if: success() && ${{ env.RUN_PUBLISH }}
secrets: inherit

publish-library:
needs: [ tag ]
uses: ./.github/workflows/publish.yml
if: ${{ success() && env.RUN_PUBLISH }}
if: success() && ${{ env.RUN_PUBLISH }}
secrets: inherit
with:
tag: ${{ needs.tag.outputs.tag }}
Expand All @@ -98,7 +98,7 @@ jobs:
needs: [ tag ]
uses: ./.github/workflows/release-cli.yml
secrets: inherit
if: ${{ success() && env.RUN_PUBLISH }}
if: success() && ${{ env.RUN_PUBLISH }}
with:
tag: ${{ needs.tag.outputs.tag }}

Expand Down

0 comments on commit 0235208

Please sign in to comment.