-
Notifications
You must be signed in to change notification settings - Fork 2
Process Substitution Fails #4
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
Comments
sylver
added a commit
that referenced
this issue
Jul 12, 2023
sylver
added a commit
that referenced
this issue
Jul 13, 2023
sylver
added a commit
that referenced
this issue
Jul 13, 2023
* improve compatibility across environment * avoid process substitutions and `bash` specifics when GitHub Actions falls back to using `sh` anyway Fixes #4
sylver
added a commit
that referenced
this issue
Jul 13, 2023
* improve compatibility across environment * avoid process substitutions and `bash` specifics when GitHub Actions falls back to using `sh` anyway Fixes #4
Merged
sylver
added a commit
that referenced
this issue
Jul 13, 2023
* improve compatibility across environment * avoid process substitutions and `bash` specifics when GitHub Actions falls back to using `sh` anyway Fixes #4
Sorry for the delay, but we took your issue into account and pushed a few improvements in a new |
sylver
added a commit
that referenced
this issue
Jul 17, 2023
* improve compatibility across environment * avoid process substitutions and `bash` specifics when GitHub Actions falls back to using `sh` anyway Fixes #4
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The process substitution
--passphrase-file <(echo ***)
in
action.yml
https://github.com/cresh-io/action-gpg/blob/69c283c829f9f89f282f110f705db67a2b263777/action.yml#L53-L55
fails in instances where GitHub Actions falls back to using
sh
(sh
does not support process substitutions unless POSIX mode is turned off withset +o posix
).Per the GitHub Docs for
jobs.<job_id>.steps[*].shell
,shell: bash
behaves as follows:Please add
set +o posix
to stepImport GPG Key
.The text was updated successfully, but these errors were encountered: