Skip to content

Commit

Permalink
upload-artifact@v4 is now immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
obriencj committed Apr 3, 2024
1 parent d9728ba commit 760c9c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_rpms.yml
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Store Source RPM
uses: actions/upload-artifact@v4
with:
name: RPMs
name: RPMs-srpm
path: ${{ steps.srpm.outputs.path }}

build-rpm:
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Store RPM ${{ matrix.platform }}
uses: actions/upload-artifact@v4
with:
name: RPMs
name: RPMs-${{ matrix.platform }}
path: dist/${{ matrix.platform }}/RPMS/noarch/*.rpm


Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/on_release.yml
Expand Up @@ -83,8 +83,9 @@ jobs:
- name: Fetch RPMs
uses: actions/download-artifact@v4
with:
name: RPMs
path: rpms
pattern: RPMs-*
merge-multiple: true

- name: Fetch Notes
uses: actions/download-artifact@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/run_tests.yml
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Store coverage
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-py${{ matrix.python-version }}
path: .coverage.py*

coverage:
Expand Down Expand Up @@ -100,7 +100,8 @@ jobs:
- name: Fetch coverage results
uses: actions/download-artifact@v4
with:
name: coverage-data
pattern: coverage-data-py*
merge-multiple: true

- name: Combine and report coverage
run: |
Expand Down

0 comments on commit 760c9c2

Please sign in to comment.