Skip to content

Commit

Permalink
Merge pull request #2200 from choria-io/dependencies
Browse files Browse the repository at this point in the history
(misc) Correctly normalize artifact names
  • Loading branch information
ripienaar authored Sep 11, 2024
2 parents 1f81239 + c354fbd commit e9c07e3
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 e9c07e3

Please sign in to comment.