Skip to content

Commit 791f21c

Browse files
committed
fix: use correct filename
1 parent f59a7b5 commit 791f21c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ jobs:
5050
run: |
5151
folder=$(ls -d release-builds/*)
5252
cd "$folder"
53-
zip -r "../AES67-${{ matrix.os }}-${{ matrix.arch }}.zip" *
53+
zip -r "../AES67-${{ matrix.platform }}-${{ matrix.arch }}.zip" *
5454
5555
- name: Zip Build Folder (Windows)
5656
if: runner.os == 'Windows'
5757
shell: pwsh
5858
run: |
5959
$folder = Get-ChildItem -Directory -Path release-builds | Select-Object -First 1
60-
Compress-Archive -Path "$($folder.FullName)\*" -DestinationPath "AES67-${{ matrix.os }}-${{ matrix.arch }}.zip"
60+
Compress-Archive -Path "$($folder.FullName)\*" -DestinationPath "release-builds/AES67-${{ matrix.platform }}-${{ matrix.arch }}.zip"
6161
6262
- name: Upload Artifacts
6363
uses: actions/upload-artifact@v4
6464
with:
65-
name: AES67-${{ matrix.os }}-${{ matrix.arch }}
66-
path: release-builds/AES67-${{ matrix.os }}-${{ matrix.arch }}.zip
65+
name: AES67-${{ matrix.platform }}-${{ matrix.arch }}
66+
path: release-builds/AES67-${{ matrix.platform }}-${{ matrix.arch }}.zip

0 commit comments

Comments
 (0)