Env vars in type-safe expressions are serialized incorrectly
See original GitHub issueThe workflow is not valid. .github/workflows/Integration tests - type-safe expressions.yaml (Line: 26, Col: 14): Unexpected symbol: '$GREETING'. Located at position 1 within expression: $GREETING
There wasn’t a single successful run. I noticed it by accident. It doesn’t produce a failed run within e. g. a PR which is a real bummer.
FYI @jmfayard
Issue Analytics
- State:
- Created a year ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Serialize Class containing Dictionary member - Stack Overflow
Example, you have a class with public property of type Dictionary. To support Xml serialization of this type, create a generic key-value class:...
Read more >Serialization issue when client is dotnet core and handlers are ...
Hey, I've come across a problem using Rebus in what I guess you'd call a ... With some system types (e.g. generic lists)...
Read more >Semantics
Variable definitions can provide an initial value, in which case it's like having a declaration and assignment (which we cover next) all in...
Read more >AWS Lambda function handler in Java
The Lambda function handler is the method in your function code that processes events. When your function is invoked, Lambda runs the handler...
Read more >Deserialization - HackTricks
Serialization is the process of turning some object into a data format that can be restored ... The main problem with deserialized objects...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I did a GitHub code search. The syntax
${{ secrets.GITHUB_TOKEN }}
or${{ env.MILESTONE }}
is correct. What I have done is broken in this case then, the addition$
shouldn’t be there https://github.com/search?q=GITHUB_TOKEN&type=codeOnly
command = "echo $GREETING"
currently works.Done via #455