-
Notifications
You must be signed in to change notification settings - Fork 10
Grails 7 Migration - Rundeck 6.0 Compatibility #25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 26 commits
289bc42
de4a8da
d459f13
3a415d5
6817817
05b4958
7571537
f767410
435a92f
9fac7d6
4548e19
be867f9
2269d9a
fc4d176
7a2a7ef
65cf000
73d3e82
f9b3a30
cc43e82
f628f71
e6e1ec6
d0f586e
d10d12f
b28c9d0
d3a613a
239bf0e
458cbda
07be7aa
efe48fa
ef93360
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,35 +12,26 @@ jobs: | |||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - name: Checkout code | ||||||
| uses: actions/checkout@v2 | ||||||
| uses: actions/checkout@v4 | ||||||
| with: | ||||||
| fetch-depth: 0 | ||||||
| - name: set up JDK 1.8 | ||||||
| uses: actions/setup-java@v1 | ||||||
| - name: Set up JDK 17 | ||||||
| uses: actions/setup-java@v4 | ||||||
| with: | ||||||
| java-version: 11 | ||||||
| java-version: '17' | ||||||
| distribution: 'zulu' | ||||||
| - name: Build with Gradle | ||||||
| run: ./gradlew build | ||||||
| - name: Get Release Version | ||||||
| id: get_version | ||||||
| run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo ::set-output name=VERSION::$VERSION | ||||||
| - name: Create Release | ||||||
| run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet) && echo "VERSION=$VERSION" >> $GITHUB_OUTPUT | ||||||
| - name: Create Release and Upload Asset | ||||||
| id: create_release | ||||||
| uses: actions/create-release@v1.0.0 | ||||||
| run: | | ||||||
| gh release create \ | ||||||
| --generate-notes \ | ||||||
| --title 'Release ${{ steps.get_version.outputs.VERSION }}' \ | ||||||
| ${{ github.ref_name }} \ | ||||||
| build/libs/http-notification-plugin-${{ steps.get_version.outputs.VERSION }}.jar | ||||||
|
||||||
| build/libs/http-notification-plugin-${{ steps.get_version.outputs.VERSION }}.jar | |
| build/libs/http-notification-${{ steps.get_version.outputs.VERSION }}.jar |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| #Wed Dec 27 09:45:56 CLST 2017 | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip | ||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The workflow uploads
build/libs/http-notification-plugin-<version>.jar, but the project name was changed tohttp-notificationand there’s noarchiveBaseName/archiveFileNameoverride inbuild.gradle. The built artifact will likely bebuild/libs/http-notification-<version>.jar, causing this upload step to fail. Either update the path here or set the jar archive name explicitly to keep the-pluginsuffix.