diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 9854115..de713ee 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -44,6 +44,11 @@ jobs: with: name: FilesModule path: ./build/libs/FilesModule-${{ env.VERSION }}.jar + # Here we upload the binary to the release + - name: Upload to release + uses: JasonEtco/upload-to-release@master + with: + args: ./build/libs/FilesModule-${{ env.VERSION }}.jar application/java-archive # Now we deploy the documents to GitHub pages - name: Deploy Dokka uses: JamesIves/github-pages-deploy-action@v4.4.1 diff --git a/.github/workflows/gradle-test.yml b/.github/workflows/gradle-test.yml index 6427c31..8024e59 100644 --- a/.github/workflows/gradle-test.yml +++ b/.github/workflows/gradle-test.yml @@ -1,6 +1,6 @@ name: "Test" # Only execute this workflow when a PR is opened or when something is pushed to the master branch -on: [push, pull_request] +on: [pull_request] jobs: testBuilds: strategy: