no longer compress release binaries
This commit is contained in:
parent
984d480340
commit
e4f8f3c07d
1 changed files with 13 additions and 1 deletions
14
.github/workflows/build-binaries.yml
vendored
14
.github/workflows/build-binaries.yml
vendored
|
@ -15,6 +15,9 @@ jobs:
|
|||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: amd64
|
||||
compress_assets: false
|
||||
md5sum: false
|
||||
overwrite: true
|
||||
release-linux-arm:
|
||||
name: release linux/arm
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -25,6 +28,9 @@ jobs:
|
|||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: arm
|
||||
compress_assets: false
|
||||
md5sum: false
|
||||
overwrite: true
|
||||
release-linux-arm64:
|
||||
name: release linux/arm64
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -35,6 +41,9 @@ jobs:
|
|||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: linux
|
||||
goarch: arm64
|
||||
compress_assets: false
|
||||
md5sum: false
|
||||
overwrite: true
|
||||
release-linux-windows:
|
||||
name: release windows
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -44,4 +53,7 @@ jobs:
|
|||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: windows
|
||||
goarch: amd64
|
||||
goarch: amd64
|
||||
compress_assets: false
|
||||
md5sum: false
|
||||
overwrite: true
|
Loading…
Add table
Reference in a new issue