Skip to content

Commit

Permalink
UNDO BEFORE MERGE - undo main
Browse files Browse the repository at this point in the history
wip
  • Loading branch information
snf2ye committed Aug 3, 2023
1 parent f8f2edd commit 2d82292
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,18 +92,21 @@ jobs:
tag:
needs: [ build, unit-tests-and-sonarqube, source-clear ]
uses: ./.github/workflows/tag.yml
if: success() && github.ref == 'refs/heads/main'
if: success()
# if: success() && github.ref == 'refs/heads/main'

publish-library:
needs: [ tag ]
uses: ./.github/workflows/publish.yml
if: success() && github.ref == 'refs/heads/main'
if: success()
# if: success() && github.ref == 'refs/heads/main'
with:
tag: ${{ needs.tag.outputs.tag }}

release-cli:
needs: [ tag ]
uses: ./.github/workflows/release-cli.yml
if: success() && github.ref == 'refs/heads/main'
if: success()
# if: success() && github.ref == 'refs/heads/main'
with:
tag: ${{ needs.tag.outputs.tag }}

0 comments on commit 2d82292

Please sign in to comment.