Process Substitution Fails
Closed this issue · 1 comments
adam-grant-hendry commented
The process substitution
--passphrase-file <(echo ***)
in action.yml
fails in instances where GitHub Actions falls back to using sh
(sh
does not support process substitutions unless POSIX mode is turned off with set +o posix
).
Per the GitHub Docs for jobs.<job_id>.steps[*].shell
, shell: bash
behaves as follows:
The default shell on non-Windows platforms with a fallback to
sh
. When specifying a bash shell on Windows, the bash shell included with Git for Windows is used.
Please add set +o posix
to step Import GPG Key
.
sylver commented
Sorry for the delay, but we took your issue into account and pushed a few improvements in a new v2
tag.