Skip to content

Commit 07be7aa

Browse files
committed
Fix JAR artifact path to match actual build output (remove -plugin suffix)
1 parent 458cbda commit 07be7aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
# Artifact name
3333
name: Grails-Plugin-${{ steps.get_version.outputs.VERSION }}
3434
# Directory containing files to upload
35-
path: build/libs/http-notification-plugin-${{ steps.get_version.outputs.VERSION }}.jar
35+
path: build/libs/http-notification-${{ steps.get_version.outputs.VERSION }}.jar

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ jobs:
3232
--generate-notes \
3333
--title 'Release ${{ steps.get_version.outputs.VERSION }}' \
3434
${{ github.ref_name }} \
35-
build/libs/http-notification-plugin-${{ steps.get_version.outputs.VERSION }}.jar
35+
build/libs/http-notification-${{ steps.get_version.outputs.VERSION }}.jar
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)