Skip to content

Commit f451ea5

Browse files
committed
Fix github upload-artifact path to Windows/Ubuntu binaries
1 parent 31ecc40 commit f451ea5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/continuous-integration-workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
- uses: actions/upload-artifact@v4
2323
with:
2424
name: opensimcreator-windows-amd64-msi
25-
path: build/*windows-amd64.msi
25+
path: build/Release/*windows-amd64.msi
2626
if-no-files-found: error
2727

2828
- uses: actions/upload-artifact@v4
2929
with:
3030
name: opensimcreator-windows-amd64-zip
31-
path: build/*windows-amd64.zip
31+
path: build/Release/*windows-amd64.zip
3232
if-no-files-found: error
3333

3434
macos_amd64:
@@ -76,5 +76,5 @@ jobs:
7676
- uses: actions/upload-artifact@v4
7777
with:
7878
name: opensimcreator-ubuntu22-amd64-deb
79-
path: build/*.deb
79+
path: build/Release/*.deb
8080
if-no-files-found: error

0 commit comments

Comments
 (0)