chore: make the directory structure as wanted

This commit is contained in:
DaanSelen
2026-04-01 13:10:34 +02:00
committed by GitHub
parent 0d2d34e3fb
commit 09b71a18cb
+6 -3
View File
@@ -83,7 +83,8 @@ jobs:
- name: move files for upload - name: move files for upload
run: | run: |
mv ./meshbook ./meshbook-dir mv ./meshbook ./meshbook-dir
mv ./dist/meshbook ./meshbook mkdir ./bin
mv ./dist/meshbook ./bin/meshbook
- name: upload the building actifacts - name: upload the building actifacts
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
@@ -91,7 +92,7 @@ jobs:
name: package-linux64 name: package-linux64
path: | path: |
./patchworks ./patchworks
./meshbook ./bin/meshbook
retention-days: 7 retention-days: 7
overwrite: true overwrite: true
@@ -213,7 +214,8 @@ jobs:
- name: move files for upload - name: move files for upload
run: | run: |
mv ./meshbook ./meshbook-dir mv ./meshbook ./meshbook-dir
mv ./dist/meshbook.exe ./meshbook.exe mkdir ./bin
mv ./dist/meshbook.exe ./bin/meshbook.exe
- name: upload the building actifacts - name: upload the building actifacts
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
@@ -221,5 +223,6 @@ jobs:
name: package-win64 name: package-win64
path: | path: |
./*.exe ./*.exe
./bin/*.exe
retention-days: 7 retention-days: 7
overwrite: true overwrite: true