Skip to content

Commit

Permalink
(misc) Correctly normalize artifact names
Browse files Browse the repository at this point in the history
Signed-off-by: R.I.Pienaar <[email protected]>
  • Loading branch information
ripienaar committed Sep 11, 2024
1 parent 51ef942 commit 8bf307a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
cd artifacts
for i in foss*
do
mv -v $i $(echo $i|cut -d_ -f 2)
mv -v $i $(echo $i|cut -d_ -f2-)
done
- name: Upload artifacts to Spaces
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:
cd artifacts
for i in foss*
do
mv -v $i $(echo $i|cut -d_ -f 2)
mv -v $i $(echo $i|cut -d_ -f2-)
done
- name: Upload artifacts to Spaces
Expand Down

0 comments on commit 8bf307a

Please sign in to comment.