From ae7d816f8f98ae4b80b2aa005792b8cdb1418536 Mon Sep 17 00:00:00 2001 From: Daan Selen Date: Mon, 30 Mar 2026 23:31:23 +0200 Subject: [PATCH] chore: try new method --- .github/workflows/cross-compile.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cross-compile.yaml b/.github/workflows/cross-compile.yaml index c6eefe5..3020e35 100644 --- a/.github/workflows/cross-compile.yaml +++ b/.github/workflows/cross-compile.yaml @@ -80,13 +80,18 @@ jobs: export GOARCH=amd64 go build -o ./patchworks ./src + - name: move files for upload + run: | + mv ./meshbook ./meshbook-dir + mv ./dist/meshbook ./meshbook + - name: upload the building actifacts uses: actions/upload-artifact@v7 with: name: package-linux64 path: | ./patchworks - ./dist/meshbook + ./meshbook retention-days: 7 overwrite: true @@ -205,12 +210,16 @@ jobs: mv *.syso ./src go build -o ./patchworks-debug.exe ./src + - name: move files for upload + run: | + mv ./meshbook ./meshbook-dir + mv ./dist/meshbook.exe ./meshbook.exe + - name: upload the building actifacts uses: actions/upload-artifact@v7 with: name: package-win64 path: | ./*.exe - ./dist/*.exe retention-days: 7 overwrite: true