-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: sepolia deployments #12329
fix: sepolia deployments #12329
Conversation
678a71b
to
ed47234
Compare
@@ -84,11 +84,6 @@ on: | |||
required: false | |||
type: string | |||
default: "false" | |||
ref: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to keep this please, otherwise the values file needs to be in master in order to test a deployment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unless the github.ref below does the same thing in that case all gucci
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cast wallet new-mnemonic --accounts "$num_accounts" --json >output.json | ||
MNEMONIC=$(jq -r '.mnemonic' output.json) | ||
ADDRESSES=$(jq -r '.accounts[].address' output.json) | ||
rm output.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
security nit: it's probably safer to put cleanup like this in a traped cleanup function.
Follow-up fixes from merging #11945 & #12076