-
Notifications
You must be signed in to change notification settings - Fork 770
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
🐛 BUG: the value read from stdin should be trimmed #993
Labels
bug
Something that isn't working
Comments
Nice catch, we should fix this soon! |
JacobMGEvans
added a commit
that referenced
this issue
May 17, 2022
…T request Matching Wrangler legacy behavior with handling inputs resolves #993
JacobMGEvans
added a commit
that referenced
this issue
May 17, 2022
…T request Matching Wrangler legacy behavior with handling inputs resolves #993
JacobMGEvans
added a commit
that referenced
this issue
May 18, 2022
…T request Matching Wrangler legacy behavior with handling inputs resolves #993
JacobMGEvans
added a commit
that referenced
this issue
May 18, 2022
…T request Matching Wrangler legacy behavior with handling inputs resolves #993
Repository owner
moved this from In Progress
to Done
in workers-sdk
May 18, 2022
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What version of
Wrangler
are you using?2.0.3
What operating system are you using?
linux
Describe the Bug
I use wrangler on github action and set secrets in a non-interactive way
like this
When I update from
@cloudflare/wrangler
towrangler2
, the TOKEN no longer what I expected.expected:
TOKEN === "some_value"
actual:
TOKEN === "some_value\n"
@cloudflare/wrangler
will strip all trailing whitespace (codebut
wrangler2
return the stdin directly (codeThe text was updated successfully, but these errors were encountered: