Исправлена загрузка артефактов в workflow.
All checks were successful
build / build (push) Successful in 31s

This commit is contained in:
Алексей Бадяев 2024-10-11 11:48:41 +07:00
parent 488c5d649c
commit 97cfa1109b
Signed by: alexey
GPG Key ID: 686FBC1363E4AFAE

View File

@ -38,20 +38,20 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true' if: steps.cache.outputs.cache-hit != 'true'
run: GOARCH=amd64 make dist run: GOARCH=amd64 make dist
- name: upload amd64 binary - name: upload amd64 binary artifact
uses: https://gitea.com/actions/upload-artifact@v3 uses: https://gitea.com/actions/upload-artifact@v3
with: with:
name: drawio-export-amd64 name: drawio-export-amd64
path: out/dist/*-amd64.tar.gz path: out/*-amd64.tar.gz
overwrite: true overwrite: true
- name: build arm64 binary - name: build arm64 binary
if: steps.cache.outputs.cache-hit != 'true' if: steps.cache.outputs.cache-hit != 'true'
run: GOARCH=arm64 make dist run: GOARCH=arm64 make dist
- name: upload arm64 binary - name: upload arm64 binary artifact
uses: https://gitea.com/actions/upload-artifact@v3 uses: https://gitea.com/actions/upload-artifact@v3
with: with:
name: drawio-export-arm64 name: drawio-export-arm64
path: out/dist/*-arm64.tar.gz path: out/*-arm64.tar.gz
overwrite: true overwrite: true