Skip to content

Commit

Permalink
fix: Append target for unique artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
RedEtherbloom committed Nov 11, 2024
1 parent 93ab252 commit b04ec64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: taskwarrior-tui
name: taskwarrior-tui-${{ matrix.target }}
path: target/${{ matrix.target }}/release/taskwarrior-tui-${{ matrix.target }}.tar.gz
- name: Releasing assets
if: startsWith(github.ref, 'refs/tags/')
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: taskwarrior-tui
name: taskwarrior-tui-${{ matrix.target }}
path: target/${{ matrix.target }}/release/taskwarrior-tui-${{ matrix.target }}.tar.gz
- name: Releasing assets
if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: taskwarrior-tui
name: taskwarrior-tui-deb
path: target/debian/taskwarrior-tui.deb
- name: Releasing assets
if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: taskwarrior-tui
name: taskwarrior-tui-rpm
path: target/release/rpmbuild/RPMS/x86_64/taskwarrior-tui-*.x86_64.rpm
- name: Releasing assets
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit b04ec64

Please sign in to comment.