Skip to content

Commit

Permalink
Adding sui-test-validator to binaries build set when attaching to rel…
Browse files Browse the repository at this point in the history
…ease (MystenLabs#8391)

## Description
Adding sui-test-validator to binaries build set when attaching to
release

## Test Plan
Ran the workflow from my branch:
https://github.com/MystenLabs/sui/actions/runs/4237771677
https://github.com/MystenLabs/sui/releases/tag/devnet-0.25.0
<img width="1284" alt="Screenshot 2023-02-21 at 3 38 37 PM"
src="https://user-images.githubusercontent.com/15659060/220483364-0d3c1cbf-d510-4558-9519-c8c6bf5aca30.png">
  • Loading branch information
ebmifa authored Feb 21, 2023
1 parent e6c2a42 commit 5d6fcba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
echo BIN_SUI_NODE="target/release/sui-node" >> $GITHUB_OUTPUT
echo BIN_SUI_TOOL="target/release/sui-tool" >> $GITHUB_OUTPUT
echo BIN_SUI_FAUCET="target/release/sui-faucet" >> $GITHUB_OUTPUT
echo BIN_SUI_TEST_VALIDATOR="target/release/sui-test-validator" >> $GITHUB_OUTPUT
- name: Upload release artifacts
uses: actions/upload-artifact@v3
Expand All @@ -62,6 +63,7 @@ jobs:
${{ steps.build.outputs.BIN_SUI_NODE }}
${{ steps.build.outputs.BIN_SUI_TOOL }}
${{ steps.build.outputs.BIN_SUI_FAUCET }}
${{ steps.build.outputs.BIN_SUI_TEST_VALIDATOR }}
- name: Publish binaries
uses: softprops/action-gh-release@v1
Expand All @@ -72,5 +74,6 @@ jobs:
${{ steps.build.outputs.BIN_SUI_NODE }}
${{ steps.build.outputs.BIN_SUI_TOOL }}
${{ steps.build.outputs.BIN_SUI_FAUCET }}
${{ steps.build.outputs.BIN_SUI_TEST_VALIDATOR }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5d6fcba

Please sign in to comment.