Use short sha
This commit is contained in:
parent
256d391e86
commit
9c549a5c55
|
@ -35,7 +35,7 @@ jobs:
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-linux-arm64-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-linux-arm64-${{ github.event.pull_request.number || github.sha::8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ jobs:
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-linux-armhf-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-linux-armhf-${{ github.event.pull_request.number || github.sha::8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ jobs:
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-linux-x64-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-linux-x64-${{ github.event.pull_request.number || github.sha::8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@ jobs:
|
||||||
./dpf/utils/package-osx-bundles.sh
|
./dpf/utils/package-osx-bundles.sh
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-macOS-universal-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-macOS-universal-${{ github.event.pull_request.number || github.sha::8 }}
|
||||||
path: |
|
path: |
|
||||||
*-macOS.pkg
|
*-macOS.pkg
|
||||||
bin/*
|
bin/*
|
||||||
|
@ -138,7 +138,7 @@ jobs:
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || github.sha::8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
!bin/*-ladspa.dll
|
!bin/*-ladspa.dll
|
||||||
|
@ -164,7 +164,7 @@ jobs:
|
||||||
make -j $(nproc)
|
make -j $(nproc)
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || github.sha }}
|
name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || github.sha::8 }}
|
||||||
path: |
|
path: |
|
||||||
bin/*
|
bin/*
|
||||||
!bin/*-ladspa.dll
|
!bin/*-ladspa.dll
|
||||||
|
|
Loading…
Reference in New Issue