We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be806fd + 9b757fe commit b5188c7Copy full SHA for b5188c7
.github/workflows/gradle-build.yml
@@ -44,6 +44,11 @@ jobs:
44
with:
45
name: FilesModule
46
path: ./build/libs/FilesModule-${{ env.VERSION }}.jar
47
+ # Here we upload the binary to the release
48
+ - name: Upload to release
49
+ uses: JasonEtco/upload-to-release@master
50
+ with:
51
+ args: ./build/libs/FilesModule-${{ env.VERSION }}.jar application/java-archive
52
# Now we deploy the documents to GitHub pages
53
- name: Deploy Dokka
54
uses: JamesIves/[email protected]
.github/workflows/gradle-test.yml
@@ -1,6 +1,6 @@
1
name: "Test"
2
# Only execute this workflow when a PR is opened or when something is pushed to the master branch
3
-on: [push, pull_request]
+on: [pull_request]
4
jobs:
5
testBuilds:
6
strategy:
0 commit comments