Skip to content

Commit

Permalink
Next development version (v3.1.13-SNAPSHOT)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed May 17, 2024
1 parent f3506a6 commit d331eff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ runs:
shell: bash
env:
DEVELOCITY_ACCESS_KEY: ${{ inputs.develocity-access-key }}
run: ./gradlew -PdeploymentRepository=$(pwd)/deployment-repository ${{ startsWith(github.event.push.head_commit.message, 'Next development version') && '' || 'build' }} publishAllPublicationsToDeploymentRepository
run: |
echo '${{ github.event.head_commit.message }}'
echo '${{ startsWith(github.event.head_commit.message, 'Next development version') }}'
echo '${{ startsWith(github.event.head_commit.message, 'Next development version') && '' || 'build' }}'
./gradlew -PdeploymentRepository=$(pwd)/deployment-repository ${{ startsWith(github.event.head_commit.message, 'Next development version') && '' || 'build' }} publishAllPublicationsToDeploymentRepository
- name: Read Version From gradle.properties
id: read-version
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=3.1.12-SNAPSHOT
version=3.1.13-SNAPSHOT

org.gradle.caching=true
org.gradle.parallel=true
Expand Down

0 comments on commit d331eff

Please sign in to comment.