Skip to content

Commit 87cf95c

Browse files
committed
算了,拉倒吧,最后试一次
1 parent 97d0633 commit 87cf95c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/release.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
- name: Upload package
4444
uses: actions/upload-artifact@v3
4545
with:
46-
name: package-exe
47-
path: 'build/compose/binaries/main/*/StopBonus-${{ github.ref_name }}.*'
46+
name: distributions
47+
path: 'build/compose/binaries/main/*/StopBonus-*.*'
4848
retention-days: 3
4949

5050
create-release:
@@ -56,13 +56,15 @@ jobs:
5656
- name: Download artifact
5757
uses: actions/download-artifact@v3
5858
with:
59-
name: package-exe
59+
name: distributions
60+
path: ./distributions/
6061

6162
# Create gitHub release
6263
- name: Create Github Release
6364
uses: softprops/action-gh-release@v2
6465
with:
65-
files: StopBonus-${{ github.ref_name }}.exe
66+
files: ./distributions/**
67+
# files: StopBonus-${{ github.ref_name }}.exe
6668
token: ${{ secrets.PUSH_TOKEN }}
6769
# generate_release_notes: true
6870

gradle.properties

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
kotlin.code.style=official
22
#org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
33
org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M"
4+
org.gradle.parallel=true
5+
org.gradle.daemon=true

0 commit comments

Comments
 (0)