Skip to content

Commit

Permalink
Merge pull request #206 from choria-io/dependencies
Browse files Browse the repository at this point in the history
(misc) Normalize artifact names to pre action changes
  • Loading branch information
ripienaar authored Sep 11, 2024
2 parents 30af03a + 18e3d38 commit dd12a59
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@ jobs:
with:
path: artifacts

- name: Artifacts normalization
shell: bash
run: |
cd artifacts
for i in foss*
do
mv -v $i $(echo $i|cut -d_ -f 2)
done
- name: Upload artifacts to Spaces
uses: jakejarvis/s3-sync-action@master
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ jobs:
with:
path: artifacts

- name: Artifacts normalization
shell: bash
run: |
cd artifacts
for i in foss*
do
mv -v $i $(echo $i|cut -d_ -f 2)
done
- name: Upload artifacts to Spaces
uses: jakejarvis/s3-sync-action@master
with:
Expand Down

0 comments on commit dd12a59

Please sign in to comment.