Skip to content

Commit

Permalink
Fix chocolatey workflow (MystenLabs#15986)
Browse files Browse the repository at this point in the history
## Description 
Fix chocolatey workflow

## Test Plan 
👀
  • Loading branch information
ebmifa authored Jan 30, 2024
1 parent 3474ab4 commit ea5666b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
if: ${{ matrix.os == 'windows-ghcloud' && env.s3_archive_exist == '' }}
shell: bash
run: |
[ -f ./target/release/sui.exe ] && mv ./target/release/sui.exe ./target/release/sui-${os_type}.exe
[ -f ./target/release/sui.exe ] && cp ./target/release/sui.exe ./target/release/sui-${os_type}.exe
[ -f ./target/release/sui-node.exe ] && mv ./target/release/sui-node.exe ./target/release/sui-node-${os_type}.exe
[ -f ./target/release/sui-tool.exe ] && mv ./target/release/sui-tool.exe ./target/release/sui-tool-${os_type}.exe
[ -f ./target/release/sui-faucet.exe ] && mv ./target/release/sui-faucet.exe ./target/release/sui-faucet-${os_type}.exe
Expand All @@ -162,6 +162,7 @@ jobs:
- name: "Publish Windows sui binary to Chocolately"
if: ${{ matrix.os == 'windows-ghcloud' && env.s3_archive_exist == '' && contains( env.sui_tag, 'testnet') }}
working-directory: chocolatey
continue-on-error: true
shell: bash
run: |
choco install checksum
Expand Down

0 comments on commit ea5666b

Please sign in to comment.