Skip to content
Snippets Groups Projects
Commit 37759699 authored by Yaroslav Lobankov's avatar Yaroslav Lobankov Committed by Yaroslav Lobankov
Browse files

ci: don't overwrite job artifacts in pkg workflows

To ensure that regular and GC64 jobs in packaging workflows don't
overwrite artifacts of each other, we need to use a different artifact
name per job.

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci
parent db6bbb59
No related branches found
No related tags found
No related merge requests found
Showing with 15 additions and 15 deletions
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: centos-7
name: centos-7${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: centos-8
name: centos-8${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: debian-buster
name: debian-buster${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: debian-bullseye
name: debian-bullseye${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: debian-stretch
name: debian-stretch${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: fedora-34
name: fedora-34${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: fedora-35
name: fedora-35${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: fedora-36
name: fedora-36${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: opensuse-leap-15.1
name: opensuse-leap-15.1${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: opensuse-leap-15.2
name: opensuse-leap-15.2${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: ubuntu-xenial
name: ubuntu-xenial${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: ubuntu-bionic
name: ubuntu-bionic${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: ubuntu-focal
name: ubuntu-focal${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: ubuntu-impish
name: ubuntu-impish${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
......@@ -69,6 +69,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: ubuntu-jammy
name: ubuntu-jammy${{ matrix.build-type == 'gc64' && '-gc64' || '' }}
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment