chore: try new method

This commit is contained in:
2026-03-30 23:31:23 +02:00
parent 60183c3300
commit ae7d816f8f
+11 -2
View File
@@ -80,13 +80,18 @@ jobs:
export GOARCH=amd64 export GOARCH=amd64
go build -o ./patchworks ./src go build -o ./patchworks ./src
- name: move files for upload
run: |
mv ./meshbook ./meshbook-dir
mv ./dist/meshbook ./meshbook
- name: upload the building actifacts - name: upload the building actifacts
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
with: with:
name: package-linux64 name: package-linux64
path: | path: |
./patchworks ./patchworks
./dist/meshbook ./meshbook
retention-days: 7 retention-days: 7
overwrite: true overwrite: true
@@ -205,12 +210,16 @@ jobs:
mv *.syso ./src mv *.syso ./src
go build -o ./patchworks-debug.exe ./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 - name: upload the building actifacts
uses: actions/upload-artifact@v7 uses: actions/upload-artifact@v7
with: with:
name: package-win64 name: package-win64
path: | path: |
./*.exe ./*.exe
./dist/*.exe
retention-days: 7 retention-days: 7
overwrite: true overwrite: true