Skip to content

Commit

Permalink
[workflow] Fix build file names
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmNotHanni committed Jun 14, 2023
1 parent f74ff2d commit 0c52831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -237,7 +237,7 @@ jobs:
- name: Prepare build artifacts
shell: pwsh
run: |
7z a -tzip "build_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.zip" ./build/*
7z a -tzip "build_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}" ./build/*
- name: Upload build artifacts
uses: actions/upload-artifact@v3
Expand All @@ -254,7 +254,7 @@ jobs:
cp -r ./assets/. release
mkdir -P ./release/shaders
cp ./shaders/*.spv ./release/shaders/
7z a -tzip "devel_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}.zip" ./release/*
7z a -tzip "devel_windows_${{ matrix.config.build_type }}_${{ matrix.config.compiler }}" ./release/*
- name: Upload release artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 0c52831

Please sign in to comment.