Skip to content

Commit

Permalink
Specify artifact paths
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Jul 12, 2022
1 parent 1cf04ae commit 87094d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- run: cp bazel-bin/cli/cli.exe wasm-info-windows.exe
- uses: actions/upload-artifact@v3
with:
name: wasm-info-binaries
path: wasm-info-windows.exe
build-linux:
runs-on: ubuntu-latest
Expand All @@ -26,6 +27,7 @@ jobs:
- run: cp bazel-bin/cli/cli wasm-info-linux
- uses: actions/upload-artifact@v3
with:
name: wasm-info-binaries
path: wasm-info-linux

release:
Expand All @@ -35,12 +37,10 @@ jobs:
- build-linux
steps:
- uses: actions/download-artifact@v3
- name: Display structure of downloaded files
run: ls -R
- uses: softprops/action-gh-release@v1
with:
prerelease: true
fail_on_unmatched_files: true
files: |
wasm-info-linux
wasm-info-windows.exe
wasm-info-binaries/wasm-info-linux
wasm-info-binaries/wasm-info-windows.exe

0 comments on commit 87094d2

Please sign in to comment.