ci: fu
Build / build (push) Has been cancelled Details
Test / test (push) Has been cancelled Details

This commit is contained in:
Ash Keel 2024-04-20 22:36:25 +02:00
parent ad0e93b4c0
commit 2b7f332d88
No known key found for this signature in database
GPG Key ID: 53A9E9A6035DD109
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ jobs:
run: GOOS=linux GOARCH=arm64 CC=aarch64-linux-gnu-gcc wails build -ldflags "-X main.appVersion=${GITHUB_REF_NAME}" -m -nosyncgomod -skipbindings -s -platform linux/arm64 -upx -upxflags "-9" -o strimertul-arm64
- name: Build windows/amd64 release
run: GOOS=windows GOARCH=amd64 CC=x86_64-w64-mingw32-gcc wails build -ldflags "-X main.appVersion=${GITHUB_REF_NAME}" -m -nosyncgomod -skipbindings -s -platform windows/amd64 -upx -upxflags "-9"
- name: Move binaries to build/bin
- name: Move binaries from build/bin
run: mkdir "${GITHUB_REF_NAME}" && mv build/bin/strimertul* "${GITHUB_REF_NAME}/"
- name: Upload binaries to MinIO
uses: https://github.com/yakubique/minio-upload@v1.1.3
@ -37,6 +37,6 @@ jobs:
access_key: ${{ secrets.MINIO_ACCESS }}
secret_key: ${{ secrets.MINIO_SECRET }}
bucket: strimertul-builds
source: "./${GITHUB_REF_NAME}/"
source: ./${{ github.ref_name }}/
target: /
recursive: true