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 }} OS: ${{ matrix.os }}
run: ./scripts/zip-ci.sh $OS run: ./scripts/zip-ci.sh $OS
- name: Upload a Build Artifact - name: Upload archive with all
uses: actions/upload-artifact@v2.2.4 uses: actions/upload-artifact@v2.2.4
with: with:
# Artifact name name: ${{ matrix.os }}.tar.gz
name: binaries-${{ matrix.os }}.zip path: ./tmp/${{ matrix.os }}.tar.gz
# A file, directory or wildcard pattern that describes what to upload - name: Upload amdfand
path: ./binaries-${{ matrix.os }}.zip uses: actions/upload-artifact@v2.2.4
# The desired behavior if no files are found using the provided path. 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 done
cd ${ROOT}/tmp cd ${ROOT}/tmp
for file in $(ls *.tar.gz);
do zip -R ${1}.zip *.tar.gz
mv $file ${ROOT}/${1}-$file
done #for file in $(ls *.tar.gz);
#do
# mv $file ${ROOT}/${1}-$file
#done