Skip to content

Commit b59e1b6

Browse files
authored
ci: include forc-node binaries in releases (#7069)
Adds forc-node binary (introduced in #6473 ) to the sway repo releases.
1 parent 2501c76 commit b59e1b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -970,13 +970,13 @@ jobs:
970970
- name: Strip release binaries x86_64-linux-gnu
971971
if: matrix.job.target == 'x86_64-unknown-linux-gnu'
972972
run: |
973-
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate; do
973+
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate forc-node; do
974974
strip "target/${{ matrix.job.target }}/release/$BINARY"
975975
done
976976
- name: Strip release binaries aarch64-linux-gnu
977977
if: matrix.job.target == 'aarch64-unknown-linux-gnu'
978978
run: |
979-
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate; do
979+
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate forc-node; do
980980
docker run --rm -v \
981981
"$PWD/target:/target:Z" \
982982
ghcr.io/cross-rs/${{ matrix.job.target }}:main \
@@ -986,7 +986,7 @@ jobs:
986986
- name: Strip release binaries mac
987987
if: matrix.job.os == 'macos-latest'
988988
run: |
989-
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate; do
989+
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate forc-node; do
990990
strip -x "target/${{ matrix.job.target }}/release/$BINARY"
991991
done
992992
@@ -1000,7 +1000,7 @@ jobs:
10001000
ZIP_FILE_NAME=forc-binaries-${{ env.PLATFORM_NAME }}_${{ env.ARCH }}.tar.gz
10011001
echo "ZIP_FILE_NAME=$ZIP_FILE_NAME" >> $GITHUB_ENV
10021002
mkdir -pv ./forc-binaries
1003-
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate; do
1003+
for BINARY in forc forc-fmt forc-lsp forc-debug forc-deploy forc-run forc-doc forc-crypto forc-tx forc-submit forc-migrate forc-node; do
10041004
cp "target/${{ matrix.job.target }}/release/$BINARY" ./forc-binaries
10051005
done
10061006
tar -czvf $ZIP_FILE_NAME ./forc-binaries

0 commit comments

Comments
 (0)