mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-01 03:21:15 +00:00
Fix artifact uploading
This commit is contained in:
parent
54eef92c6b
commit
4a9ff876a5
17
.github/workflows/build.yml
vendored
17
.github/workflows/build.yml
vendored
@ -80,15 +80,26 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload Build Artifacts (MSVC (32-bit))
|
- name: Upload Build Artifacts (MSVC (32-bit))
|
||||||
if: ${{ matrix.toolchain.name == 'MSVC (32-bit, Release)' || matrix.toolchain.name == 'MSVC (32-bit, Debug)' }}
|
if: ${{ matrix.toolchain.name == 'MSVC (32-bit, Release)' || matrix.toolchain.name == 'MSVC (32-bit, Debug)' }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@main
|
||||||
with:
|
with:
|
||||||
name: msvc32-artifacts
|
name: msvc32-artifacts-${{ matrix.toolchain.name }}
|
||||||
path: |
|
path: |
|
||||||
build/isle-portable (${{ matrix.toolchain.name }}).zip
|
build/isle-portable (${{ matrix.toolchain.name }}).zip
|
||||||
|
|
||||||
|
merge-artifacts:
|
||||||
|
name: 'Merge artifacts'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: build-current-toolchain
|
||||||
|
steps:
|
||||||
|
- name: Merge Artifacts
|
||||||
|
uses: actions/upload-artifact/merge@v4
|
||||||
|
with:
|
||||||
|
name: msvc32-artifacts
|
||||||
|
pattern: msvc32-artifacts-*
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
name: 'Upload artifacts'
|
name: 'Upload artifacts'
|
||||||
needs: build-current-toolchain
|
needs: merge-artifacts
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'isledecomp/isle-portable' }}
|
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'isledecomp/isle-portable' }}
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user