diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a791355..8058e62 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,8 +43,8 @@ jobs: - name: Upload package uses: actions/upload-artifact@v3 with: - name: package-exe - path: 'build/compose/binaries/main/*/StopBonus-${{ github.ref_name }}.*' + name: distributions + path: 'build/compose/binaries/main/*/StopBonus-*.*' retention-days: 3 create-release: @@ -56,13 +56,15 @@ jobs: - name: Download artifact uses: actions/download-artifact@v3 with: - name: package-exe + name: distributions + path: ./distributions/ # Create gitHub release - name: Create Github Release uses: softprops/action-gh-release@v2 with: - files: StopBonus-${{ github.ref_name }}.exe + files: ./distributions/** +# files: StopBonus-${{ github.ref_name }}.exe token: ${{ secrets.PUSH_TOKEN }} # generate_release_notes: true diff --git a/gradle.properties b/gradle.properties index ebbcc92..b4029aa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,5 @@ kotlin.code.style=official #org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M" +org.gradle.parallel=true +org.gradle.daemon=true