Skip to content

Commit 6027efd

Browse files
committed
Rename release artifact to Progressive-Java-Client
Update GitHub Actions workflow to use Progressive-Java-Client as the artifact name and filename. Adjusted upload-artifact name/path, the copy step, and the gh release command to reference Progressive-Java-Client-${GITHUB_REF_NAME}.jar for uploads and releases.
1 parent a7f1c5b commit 6027efd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-jar.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727

2828
- uses: actions/upload-artifact@v4
2929
with:
30-
name: java-254-client
31-
path: target/java-254-client-*.jar
30+
name: Progressive-Java-Client
31+
path: target/Progressive-Java-Client-*.jar
3232

3333
- name: Name release JAR
3434
if: startsWith(github.ref, 'refs/tags/v')
35-
run: cp target/java-254-client-*.jar "java-254-client-${GITHUB_REF_NAME}.jar"
35+
run: cp target/Progressive-Java-Client-*.jar "Progressive-Java-Client-${GITHUB_REF_NAME}.jar"
3636

3737
- name: Create GitHub release
3838
if: startsWith(github.ref, 'refs/tags/v')
3939
env:
4040
GH_TOKEN: ${{ github.token }}
41-
run: gh release create "$GITHUB_REF_NAME" "java-254-client-${GITHUB_REF_NAME}.jar" --verify-tag --generate-notes
41+
run: gh release create "$GITHUB_REF_NAME" "Progressive-Java-Client-${GITHUB_REF_NAME}.jar" --verify-tag --generate-notes

0 commit comments

Comments
 (0)