Try unique package names per build.
This commit is contained in:
parent
827b7c685f
commit
b79a4a6806
1 changed files with 5 additions and 4 deletions
9
.github/workflows/build.yaml
vendored
9
.github/workflows/build.yaml
vendored
|
@ -1,6 +1,7 @@
|
|||
name: Package
|
||||
on: [push]
|
||||
|
||||
env:
|
||||
version: ${{github.base_ref}}-${{github.sha}}
|
||||
jobs:
|
||||
build-macos:
|
||||
|
||||
|
@ -25,7 +26,7 @@ jobs:
|
|||
- name: Archive Build
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Package - MacOS
|
||||
name: BAPSicle-${{ env.version }}-MacOS
|
||||
path: |
|
||||
build/output/BAPSicle.zip
|
||||
|
||||
|
@ -51,7 +52,7 @@ jobs:
|
|||
- name: Archive Build
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Package - Ubuntu
|
||||
name: BAPSicle-${{ env.version }}-Ubuntu
|
||||
path: |
|
||||
build/output/BAPSicle
|
||||
|
||||
|
@ -77,7 +78,7 @@ jobs:
|
|||
- name: Archive Build
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Package - Windows
|
||||
name: BAPSicle-${{ env.version }}-Windows
|
||||
path: |
|
||||
build/output/BAPSicle.exe
|
||||
install/
|
||||
|
|
Loading…
Reference in a new issue