Skip to content

Commit

Permalink
test full workflow - undo before merge
Browse files Browse the repository at this point in the history
  • Loading branch information
snf2ye committed Aug 3, 2023
1 parent 2ceffbe commit ae5ccc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ jobs:
tag:
needs: [ build, unit-tests-and-sonarqube, source-clear ]
uses: ./.github/workflows/tag.yml
if: success() && github.ref == 'refs/heads/main'
if: success()
secrets: inherit

publish-library:
needs: [ tag ]
uses: ./.github/workflows/publish.yml
if: success() && github.ref == 'refs/heads/main'
if: success()
secrets: inherit
with:
tag: ${{ needs.tag.outputs.tag }}
Expand All @@ -88,7 +88,7 @@ jobs:
needs: [ tag ]
uses: ./.github/workflows/release-cli.yml
secrets: inherit
if: success() && github.ref == 'refs/heads/main'
if: success()
with:
tag: ${{ needs.tag.outputs.tag }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.BROADBOT_TOKEN }}
HOTFIX_BRANCHES: hotfix.*
DEFAULT_BUMP: minor
RELEASE_BRANCHES: main
RELEASE_BRANCHES: main,sh-aj-1095-publilsh
VERSION_FILE_PATH: settings.gradle
VERSION_LINE_MATCH: "^\\s*gradle.ext.releaseVersion\\s*=\\s*'.*'"

0 comments on commit ae5ccc7

Please sign in to comment.