Skip to content

Commit 1bf67e3

Browse files
committed
exclude hi-rust-release.d file
1 parent b7d8085 commit 1bf67e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
matrix:
1717
include:
1818
- os: windows-latest
19+
file: target/release/hi-rust-release.exe
1920
- os: ubuntu-latest
21+
file: target/release/hi-rust-release
2022
runs-on: ${{ matrix.os }}
2123
outputs:
2224
artifact-url: ${{ steps.artifact-upload-step.outputs.artifact-url }}
@@ -29,8 +31,7 @@ jobs:
2931
id: artifact-upload-step
3032
with:
3133
name: Binary-${{ matrix.os }}
32-
path: |
33-
target/release/hi-rust-release*
34+
path: ${{ matrix.file }}
3435
- name: Output artifact ID
3536
run: echo 'Artifact ID is ${{ steps.artifact-upload-step.outputs.artifact-url }}'
3637

0 commit comments

Comments
 (0)