Skip to content

Commit

Permalink
Disable networking for built binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
mllnd committed Nov 7, 2023
1 parent e11d337 commit 026336a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Release
name: "Release"

on:
push:
Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
targets=(x86_64-unknown-linux-gnu x86_64-pc-windows-msvc x86_64-apple-darwin aarch64-apple-darwin)
for target in "${targets[@]}"; do
deno compile --unstable -A --target "${target}" -o "./targets/ethereum-deposit-cli_${target}" ./bin/ethereum-deposit-cli.ts
deno compile --unstable --allow-read --allow-write --target "${target}" -o "./targets/ethereum-deposit-cli_${target}" ./bin/ethereum-deposit-cli.ts
done
sha256sum ./targets/ethereum-deposit-cli_* > ./targets/SHA256SUMS
Expand Down

0 comments on commit 026336a

Please sign in to comment.