Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,46 +106,52 @@ jobs:
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet --dependency-verification off) && echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Get RPM Version
id: get_rpm_version
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet --dependency-verification off | sed 's/-/./') && echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet --dependency-verification off | sed 's/-/./g') && echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Upload zip
uses: actions/upload-artifact@v4
with:
# Artifact name
name: rd-${{ steps.get_version.outputs.VERSION }}.zip
# Directory containing files to upload
path: rd-cli-tool/build/distributions/rd-${{ steps.get_version.outputs.VERSION }}.zip
if-no-files-found: error
- name: Upload rpm
uses: actions/upload-artifact@v4
with:
# Artifact name
name: rundeck.rpm
# Directory containing files to upload
path: rd-cli-tool/build/distributions/rundeck-cli-${{ steps.get_rpm_version.outputs.VERSION }}-1.noarch.rpm
if-no-files-found: error
- name: Upload deb
uses: actions/upload-artifact@v4
with:
# Artifact name
name: rundeck.deb
# Directory containing files to upload
path: rd-cli-tool/build/distributions/rundeck-cli_${{ steps.get_rpm_version.outputs.VERSION }}-1_all.deb
if-no-files-found: error
- name: Upload all-jar
uses: actions/upload-artifact@v4
with:
# Artifact name
name: rundeck-cli-${{ steps.get_version.outputs.VERSION }}-all.jar
# Directory containing files to upload
path: rd-cli-tool/build/libs/rundeck-cli-${{ steps.get_version.outputs.VERSION }}-all.jar
if-no-files-found: error
- name: Upload api-lib
uses: actions/upload-artifact@v4
with:
# Artifact name
name: rd-api-client-${{ steps.get_version.outputs.VERSION }}.jar
# Directory containing files to upload
path: rd-api-client/build/libs/rd-api-client-${{ steps.get_version.outputs.VERSION }}.jar
if-no-files-found: error
- name: Upload rd-cli-lib
uses: actions/upload-artifact@v4
with:
# Artifact name
name: rd-cli-lib-${{ steps.get_version.outputs.VERSION }}.jar
# Directory containing files to upload
path: rd-cli-lib/build/libs/rd-cli-lib-${{ steps.get_version.outputs.VERSION }}.jar
if-no-files-found: error
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ okhttp = "4.12.0"
lombok = "1.18.42"
jaxb = "2.3.9"
junit = "4.13.2"
groovy = "4.0.30"
groovy = "4.0.32"
spock = "2.3-groovy-4.0"
axion = "1.15.5"
axion = "1.21.2"
nexusPublish = "1.3.0"
shadow = "8.1.1"
ospackage = "11.11.2"
buildInfo = "0.9"
buildConfig = "3.1.0"
jacksonDatabind = "2.21.2"
jacksonDatabind = "2.22.0"
picocli = "4.7.7"
snakeYaml = "2.0"
rundeck = "6.0.0-alpha1-20260407"
rundeck = "6.1.0-SNAPSHOT"
testcontainers = "1.21.4"
commonsCompress = "1.28.0"
# Spock mocks of concrete classes; not always pulled transitively with groovy-all 4.x
byteBuddy = "1.15.11"
byteBuddy = "1.18.10"
Comment thread
fdevans marked this conversation as resolved.

[libraries]

Expand Down
Loading
Loading