Skip to content

Commit f8ba040

Browse files
fix: use varient in CI artifacts names to fix duplicate artifact name issue
1 parent 96b04a9 commit f8ba040

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/anchor-build-and-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: ⬆️ Upload Tarballs
4040
uses: actions/upload-artifact@v3
4141
with:
42-
name: ${{ matrix.suite }}-${{ matrix.architecture }}-tarballs
42+
name: ${{ matrix.suite }}-${{ matrix.variant }}-${{ matrix.architecture }}-tarballs
4343
path: fs-cook/out/${{ matrix.suite }}-${{ matrix.variant }}-${{ matrix.architecture }}.tar.gz
4444

4545
create-release:

.github/workflows/build-and-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: ⬆️ Upload Tarballs
4949
uses: actions/[email protected]
5050
with:
51-
name: ${{ matrix.suite }}-${{ matrix.architecture }}-tarballs
51+
name: ${{ matrix.suite }}-${{ matrix.variant }}-${{ matrix.architecture }}-tarballs
5252
path: fs-cook/out/${{ matrix.suite }}-${{ matrix.variant }}-**.tar.gz
5353

5454
create-release:

0 commit comments

Comments
 (0)