mirror of https://github.com/statping/statping
fix multi-upload artifact logic introduced in @actions/upload-artifact v4
parent
01b691eaf0
commit
05676828ad
|
@ -195,7 +195,7 @@ jobs:
|
||||||
- name: Upload Compiled Statping Binary
|
- name: Upload Compiled Statping Binary
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: binaries
|
name: binaries-${{ matrix.platform }}-${{ matrix.arch }}
|
||||||
path: ./build
|
path: ./build
|
||||||
|
|
||||||
# TODO refactor (and fix) tests
|
# TODO refactor (and fix) tests
|
||||||
|
@ -467,7 +467,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v4
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: binaries
|
pattern: binaries-*
|
||||||
path: binaries
|
path: binaries
|
||||||
- uses: ncipollo/release-action@v1
|
- uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue