Skip to content

Commit 137e7d3

Browse files
author
Francisco Solis
authored
Merge pull request #24 from TheProgramSrc/feat/add-file-to-release
Add ability to publish files to release
2 parents 7d3273e + 02711d7 commit 137e7d3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/gradle-build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,15 @@ jobs:
4343
with:
4444
name: TasksModule
4545
path: ./build/libs/TasksModule-${{ env.VERSION }}.jar
46+
# Here we upload the binary to the release
47+
- name: Upload to release
48+
uses: JasonEtco/upload-to-release@master
49+
with:
50+
args: ./build/libs/TasksModule-${{ env.VERSION }}.jar application/java-archive
4651
# Now we deploy the documents to GitHub pages
4752
- name: Deploy Dokka
4853
uses: JamesIves/[email protected]
4954
with:
5055
branch: gh-pages
5156
folder: build/dokka
52-
clean: true
57+
clean: true

0 commit comments

Comments
 (0)