Hacker News new | ask | show | jobs
by giobox 1001 days ago
Executing bash statements/scripts/functions is the thing I struggle least with in GH actions personally, it's remarkably easy to execute shell steps. If you really want your entire build to be a shellscript the action executes, you can do just that with very little YAML.
1 comments

Except it doesn’t execute quite like in bash, and every single command is it’s own little island.

So exporting an environment variable doesn’t work for example.

What are you talking about? You can put a whole Bash script into a single step.