no longer compress release binaries

This commit is contained in:
BroodjeAap 2022-12-17 15:43:01 +00:00
parent 984d480340
commit e4f8f3c07d

View file

@ -15,6 +15,9 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux goos: linux
goarch: amd64 goarch: amd64
compress_assets: false
md5sum: false
overwrite: true
release-linux-arm: release-linux-arm:
name: release linux/arm name: release linux/arm
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -25,6 +28,9 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux goos: linux
goarch: arm goarch: arm
compress_assets: false
md5sum: false
overwrite: true
release-linux-arm64: release-linux-arm64:
name: release linux/arm64 name: release linux/arm64
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -35,6 +41,9 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux goos: linux
goarch: arm64 goarch: arm64
compress_assets: false
md5sum: false
overwrite: true
release-linux-windows: release-linux-windows:
name: release windows name: release windows
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -44,4 +53,7 @@ jobs:
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
goos: windows goos: windows
goarch: amd64 goarch: amd64
compress_assets: false
md5sum: false
overwrite: true