Fix build

This commit is contained in:
Adrian Woźniak 2022-06-15 17:55:34 +02:00
parent 11233bedd5
commit f1d7f10dc9
No known key found for this signature in database
GPG Key ID: 0012845A89C7352B
2 changed files with 41 additions and 10 deletions

View File

@ -90,11 +90,39 @@ jobs:
OS: ${{ matrix.os }}
run: ./scripts/zip-ci.sh $OS
- name: Upload a Build Artifact
- name: Upload archive with all
uses: actions/upload-artifact@v2.2.4
with:
# Artifact name
name: binaries-${{ matrix.os }}.zip
# A file, directory or wildcard pattern that describes what to upload
path: ./binaries-${{ matrix.os }}.zip
# The desired behavior if no files are found using the provided path.
name: ${{ matrix.os }}.tar.gz
path: ./tmp/${{ matrix.os }}.tar.gz
- name: Upload amdfand
uses: actions/upload-artifact@v2.2.4
with:
name: ${{ matrix.os }}-amdfand.tar.gz
path: ./tmp/amdfand.tar.gz
- name: Upload amdguid-glium
uses: actions/upload-artifact@v2.2.4
with:
name: ${{ matrix.os }}-amdguid-glium.tar.gz
path: ./tmp/amdguid-glium.tar.gz
- name: Upload amdguid-glow
uses: actions/upload-artifact@v2.2.4
with:
name: ${{ matrix.os }}-amdguid-glow.tar.gz
path: ./tmp/amdguid-glow.tar.gz
- name: Upload amdguid-wayland
uses: actions/upload-artifact@v2.2.4
with:
name: ${{ matrix.os }}-amdguid-wayland.tar.gz
path: ./tmp/amdguid-wayland.tar.gz
- name: Upload amdmond
uses: actions/upload-artifact@v2.2.4
with:
name: ${{ matrix.os }}-amdmond.tar.gz
path: ./tmp/amdmond.tar.gz
- name: Upload amdvold
uses: actions/upload-artifact@v2.2.4
with:
name: ${{ matrix.os }}-amdvold.tar.gz
path: ./tmp/amdvold.tar.gz

View File

@ -51,7 +51,10 @@ for f in $(ls *.tar.gz); do
done
cd ${ROOT}/tmp
for file in $(ls *.tar.gz);
do
mv $file ${ROOT}/${1}-$file
done
zip -R ${1}.zip *.tar.gz
#for file in $(ls *.tar.gz);
#do
# mv $file ${ROOT}/${1}-$file
#done