Fix build
This commit is contained in:
parent
11233bedd5
commit
f1d7f10dc9
40
.github/workflows/rust.yml
vendored
40
.github/workflows/rust.yml
vendored
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user