mirror of
https://github.com/86Box/probing-tools.git
synced 2026-02-28 01:44:24 -07:00
workflows: Fix build
Artifact merging stuff is inevitable now
This commit is contained in:
22
.github/workflows/build.yml
vendored
22
.github/workflows/build.yml
vendored
@@ -75,9 +75,9 @@ jobs:
|
||||
run: |
|
||||
cd ${{ github.workspace }}/usblgoff
|
||||
wmake
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: probing-tools-${{ github.sha }}
|
||||
name: probing-tools-${{ github.sha }}-${{ github.job }}
|
||||
path: |
|
||||
**/*.EXE
|
||||
**/*.EFI
|
||||
@@ -118,11 +118,25 @@ jobs:
|
||||
run: |
|
||||
cd ${{ github.workspace }}/viakey
|
||||
./build.bat VIAKEY
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: probing-tools-${{ github.sha }}
|
||||
name: probing-tools-${{ github.sha }}-${{ github.job }}
|
||||
path: |
|
||||
**/*.COM
|
||||
amikey/*.md
|
||||
multikey/*.md
|
||||
viakey/*.md
|
||||
|
||||
merge:
|
||||
name: Artifacts
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
needs: [make, newbasic]
|
||||
|
||||
steps:
|
||||
- name: Merge artifacts
|
||||
uses: actions/upload-artifact/merge@v4
|
||||
with:
|
||||
name: probing-tools-${{ github.sha }}
|
||||
pattern: probing-tools-${{ github.sha }}-*
|
||||
delete-merged: true
|
||||
|
||||
Reference in New Issue
Block a user