mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-14 10:20:05 +00:00
Fix directory names for artifacts
This commit is contained in:
parent
b683152fbf
commit
685cee2561
8
.github/workflows/check-builds.yaml
vendored
8
.github/workflows/check-builds.yaml
vendored
@ -122,15 +122,17 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- run: mkdir ${{ github.sha }}
|
- run: |
|
||||||
|
GITDESC=$(git describe --tags)
|
||||||
|
mkdir $GITDESC
|
||||||
|
echo "ARTDIR=$GITDESC" >> $GITHUB_ENV
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ github.sha }}
|
path: ${{ env.ARTDIR }}
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
sudo apt install zip -y
|
sudo apt install zip -y
|
||||||
ARTDIR=$(git describe --tags)
|
|
||||||
cd $ARTDIR
|
cd $ARTDIR
|
||||||
for build in *; do
|
for build in *; do
|
||||||
cd $build
|
cd $build
|
||||||
|
Loading…
Reference in New Issue
Block a user