Skip to content

Commit

Permalink
[CI] Fix release workflow (MystenLabs#18454)
Browse files Browse the repository at this point in the history
## Description 

Fixes a bug I introduced with MystenLabs#18204 in the bash script building
`sui-pg` binary.

## Test plan 

How did you test the new or updated feature?

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
  • Loading branch information
stefan-mysten authored and tx-tomcat committed Jul 29, 2024
1 parent af92cae commit 9487d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
done
# sui-pg is a special binary that is built with the indexer feature for sui start cmd
export binary='sui-pg' | tr -d $'\r')
export binary=$(echo "sui-pg" | tr -d $'\r')
mv ./target/release/${binary}${{ env.extention }} ${{ env.TMP_BUILD_DIR }}/${binary}${{ env.extention }}
mv ./target/debug/sui${{ env.extention }} ${{ env.TMP_BUILD_DIR }}/sui-debug${{ env.extention }}
Expand Down

0 comments on commit 9487d44

Please sign in to comment.