From 09b71a18cb82e04d064377c7ff06f58b824d9109 Mon Sep 17 00:00:00 2001 From: DaanSelen <80752476+DaanSelen@users.noreply.github.com> Date: Wed, 1 Apr 2026 13:10:34 +0200 Subject: [PATCH] chore: make the directory structure as wanted --- .github/workflows/cross-compile.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cross-compile.yaml b/.github/workflows/cross-compile.yaml index d095fed..7a6a2ea 100644 --- a/.github/workflows/cross-compile.yaml +++ b/.github/workflows/cross-compile.yaml @@ -83,7 +83,8 @@ jobs: - name: move files for upload run: | mv ./meshbook ./meshbook-dir - mv ./dist/meshbook ./meshbook + mkdir ./bin + mv ./dist/meshbook ./bin/meshbook - name: upload the building actifacts uses: actions/upload-artifact@v7 @@ -91,7 +92,7 @@ jobs: name: package-linux64 path: | ./patchworks - ./meshbook + ./bin/meshbook retention-days: 7 overwrite: true @@ -213,7 +214,8 @@ jobs: - name: move files for upload run: | mv ./meshbook ./meshbook-dir - mv ./dist/meshbook.exe ./meshbook.exe + mkdir ./bin + mv ./dist/meshbook.exe ./bin/meshbook.exe - name: upload the building actifacts uses: actions/upload-artifact@v7 @@ -221,5 +223,6 @@ jobs: name: package-win64 path: | ./*.exe + ./bin/*.exe retention-days: 7 overwrite: true