Skip to content

Commit

Permalink
Fix build name & number vars
Browse files Browse the repository at this point in the history
* Bring back SNAPSHOT version
  • Loading branch information
artembilan committed Nov 14, 2023
1 parent 900cf34 commit bfdf324
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/spring-artifactory-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ jobs:
needs: verify-staged
uses: spring-projects/spring-integration-aws/.github/workflows/spring-artifactory-promote-milestone.yml@main
with:
buildName: $JFROG_CLI_BUILD_NAME
buildNumber: $JFROG_CLI_BUILD_NUMBER
buildName: ${{ env.JFROG_CLI_BUILD_NAME }}
buildNumber: ${{ env.JFROG_CLI_BUILD_NUMBER }}
secrets: inherit

promote-ga:
if: ${{ ! contains(inputs.releaseVersion, '-') }}
needs: verify-staged
uses: spring-projects/spring-integration-aws/.github/workflows/spring-artifactory-promote-central.yml@main
with:
buildName: $JFROG_CLI_BUILD_NAME
buildNumber: $JFROG_CLI_BUILD_NUMBER
buildName: ${{ env.JFROG_CLI_BUILD_NAME }}
buildNumber: ${{ env.JFROG_CLI_BUILD_NUMBER }}
secrets: inherit

finalize:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=3.0.5-SNAPSHOT
version=3.0.4-SNAPSHOT
org.gradle.caching=true
org.gradle.parallel=true

0 comments on commit bfdf324

Please sign in to comment.