Skip to content

Commit ee956bb

Browse files
committed
fix: Append target for unique artifact names
1 parent e46a7f7 commit ee956bb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Upload artifacts
8383
uses: actions/upload-artifact@v4
8484
with:
85-
name: taskwarrior-tui
85+
name: taskwarrior-tui-${{ matrix.target }}
8686
path: target/${{ matrix.target }}/release/taskwarrior-tui-${{ matrix.target }}.tar.gz
8787
- name: Releasing assets
8888
if: startsWith(github.ref, 'refs/tags/')

.github/workflows/cd.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- name: Upload artifacts
9494
uses: actions/upload-artifact@v4
9595
with:
96-
name: taskwarrior-tui
96+
name: taskwarrior-tui-${{ matrix.target }}
9797
path: target/${{ matrix.target }}/release/taskwarrior-tui-${{ matrix.target }}.tar.gz
9898
- name: Releasing assets
9999
if: startsWith(github.ref, 'refs/tags/')
@@ -133,7 +133,7 @@ jobs:
133133
- name: Upload artifacts
134134
uses: actions/upload-artifact@v4
135135
with:
136-
name: taskwarrior-tui
136+
name: taskwarrior-tui-deb
137137
path: target/debian/taskwarrior-tui.deb
138138
- name: Releasing assets
139139
if: startsWith(github.ref, 'refs/tags/')
@@ -163,7 +163,7 @@ jobs:
163163
- name: Upload artifacts
164164
uses: actions/upload-artifact@v4
165165
with:
166-
name: taskwarrior-tui
166+
name: taskwarrior-tui-rpm
167167
path: target/release/rpmbuild/RPMS/x86_64/taskwarrior-tui-*.x86_64.rpm
168168
- name: Releasing assets
169169
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)