Skip to content

Commit 108a0d1

Browse files
authored
add tasks to publish steps (#3)
1 parent 283e434 commit 108a0d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-manually.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id: get_tag
2525
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
2626
- name: Build shadowJar for Github
27-
run: ./gradlew -Prelease -Pversion=${{ steps.get_tag.outputs.VERSION }} shadowJar
27+
run: ./gradlew -Prelease -Pversion=${{ steps.get_tag.outputs.VERSION }} shadowJar createChecksums
2828
- name: Release to Github
2929
uses: softprops/action-gh-release@v1
3030
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
id: get_tag
2828
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
2929
- name: Build shadowJar for Github
30-
run: ./gradlew -Prelease -Pversion=${{ steps.get_tag.outputs.VERSION }} shadowJar
30+
run: ./gradlew -Prelease -Pversion=${{ steps.get_tag.outputs.VERSION }} shadowJar createChecksums
3131
- name: Release to Github
3232
uses: softprops/action-gh-release@v1
3333
with:

0 commit comments

Comments
 (0)