Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
Fix references to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Nov 16, 2023
1 parent e79ddc4 commit 60afbb9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/spring-artifactory-release.yml
Expand Up @@ -71,23 +71,23 @@ jobs:
staging:
needs: releaseVersion
uses: artembilan/spring-messaging-build-tools/.github/workflows/spring-stage-release.yml@main
uses: ./.github/workflows/spring-stage-release.yml@main
with:
releaseVersion: ${{ needs.releaseVersion.outputs.releaseVersion }}
buildToolArgs: ${{ inputs.buildToolArgs }}
secrets: inherit

verify-staged:
needs: [releaseVersion, staging]
uses: ./.github/workflows/verify-staged-artifacts.yml
uses: ${{ github.repository }}/.github/workflows/verify-staged-artifacts.yml
with:
releaseVersion: ${{ needs.releaseVersion.outputs.releaseVersion }}
secrets: inherit

promote-milestone:
needs: [releaseVersion, staging, verify-staged]
if: ${{ (contains(needs.releaseVersion.outputs.releaseVersion, '-M') || contains(needs.releaseVersion.outputs.releaseVersion, '-RC')) }}
uses: artembilan/spring-messaging-build-tools/.github/workflows/spring-artifactory-promote-milestone.yml@main
uses: ./.github/workflows/spring-artifactory-promote-milestone.yml@main
with:
buildName: ${{ needs.staging.outputs.buildName }}
buildNumber: ${{ needs.staging.outputs.buildNumber }}
Expand All @@ -96,7 +96,7 @@ jobs:
promote-ga:
needs: [releaseVersion, staging, verify-staged]
if: ${{ !contains(needs.releaseVersion.outputs.releaseVersion, '-') }}
uses: artembilan/spring-messaging-build-tools/.github/workflows/spring-artifactory-promote-central.yml@main
uses: ./.github/workflows/spring-artifactory-promote-central.yml@main
with:
buildName: ${{ needs.staging.outputs.buildName }}
buildNumber: ${{ needs.staging.outputs.buildNumber }}
Expand All @@ -105,7 +105,7 @@ jobs:
finalize:
if: ${{ !(failure() || cancelled()) }}
needs: [releaseVersion, promote-milestone, promote-ga]
uses: artembilan/spring-messaging-build-tools/.github/workflows/spring-finalize-release.yml@main
uses: ./.github/workflows/spring-finalize-release.yml@main
with:
milestone: ${{ needs.releaseVersion.outputs.releaseVersion }}
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/spring-stage-release.yml
Expand Up @@ -56,7 +56,7 @@ jobs:
staging-with-gradle:
needs: maven-or-gradle
if: ${{ needs.maven-or-gradle.outputs.isMaven == 'false' }}
uses: artembilan/spring-messaging-build-tools/.github/workflows/spring-artifactory-gradle-release-staging.yml@main
uses: ./.github/workflows/spring-artifactory-gradle-release-staging.yml@main
with:
releaseVersion: ${{ inputs.releaseVersion }}
gradleTasks: ${{ inputs.buildToolArgs }}
Expand All @@ -66,7 +66,7 @@ jobs:
staging-with-maven:
needs: maven-or-gradle
if: ${{ needs.maven-or-gradle.outputs.isMaven == 'true' }}
uses: artembilan/spring-messaging-build-tools/.github/workflows/spring-artifactory-maven-release-staging.yml@main
uses: ./.github/workflows/spring-artifactory-maven-release-staging.yml@main
with:
releaseVersion: ${{ inputs.releaseVersion }}
mavenArgs: ${{ inputs.buildToolArgs }}
Expand Down

0 comments on commit 60afbb9

Please sign in to comment.