Skip to content

Commit

Permalink
Allow version x.yz.w format in release workflow (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
DelevoXDG authored Feb 13, 2024
1 parent d12f31e commit 41b074c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Bundle universal JAR
run: ./gradlew lib:jar
- name: Rename JAR
run: mv lib/build/libs/lib-[0-9].[0-9].[0-9].jar starknet.jar
run: mv lib/build/libs/lib-[0-9].[0-9][0-9].[0-9].jar starknet.jar
- name: Upload the JAR
uses: actions/upload-artifact@v3
with:
Expand All @@ -168,7 +168,7 @@ jobs:
- name: Generate sources JAR
run: ./gradlew sourcesJar
- name: Rename JARS
run: mv lib/build/libs/lib-[0-9].[0-9].[0-9]-javadoc.jar javadoc.jar && mv lib/build/libs/lib-[0-9].[0-9].[0-9]-sources.jar sources.jar
run: mv lib/build/libs/lib-[0-9].[0-9][0-9].[0-9]-javadoc.jar javadoc.jar && mv lib/build/libs/lib-[0-9].[0-9][0-9].[0-9]-sources.jar sources.jar
- name: Upload javadoc JAR
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 41b074c

Please sign in to comment.