Skip to content

Commit

Permalink
Merge pull request #9 from candlepin/ptoscano/unique-artifact-names
Browse files Browse the repository at this point in the history
ci: use unique artifact names
  • Loading branch information
jirihnidek authored Jan 3, 2024
2 parents 360ecd5 + e0006e6 commit 70318f1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ jobs:
git config --global user.email "actions@github.com"
git config --global user.name "Github Actions"
- name: Get container name & version
id: container-name
run: |
name=${{ matrix.container }}
name=${name##*/}
name=${name//:/-}
echo "name=${name}" >> $GITHUB_OUTPUT
- name: Setup EPEL 8
if: ${{ endsWith(matrix.container, 'stream8') }}
run: |
Expand Down Expand Up @@ -74,6 +82,6 @@ jobs:
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
name: RPMs for ${{ steps.container-name.outputs.name }}
path: |
tito/

0 comments on commit 70318f1

Please sign in to comment.