Skip to content

Commit 3ae89fa

Browse files
committed
remove redundant architecture suffix from binary
1 parent 0e70d02 commit 3ae89fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pipeline.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
run: cargo build --release --target ${{ matrix.architecture }}
3232

3333
- name: Rename binary
34-
run: mv target/${{ matrix.architecture }}/release/worktimers target/${{ matrix.architecture }}/release/worktimers-darwin-${{ matrix.architecture }}
34+
run: mv target/${{ matrix.architecture }}/release/worktimers target/${{ matrix.architecture }}/release/worktimers-${{ matrix.architecture }}
3535

3636
- name: Upload binary
3737
uses: softprops/action-gh-release@v2
3838
with:
39-
files: target/${{ matrix.architecture }}/release/worktimers-darwin-${{ matrix.architecture }}
39+
files: target/${{ matrix.architecture }}/release/worktimers-${{ matrix.architecture }}
4040
tag_name: v1.0.${{ github.run_number }}
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)