Skip to content
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

fix(action): set entrypoint type to string #27

Merged
merged 1 commit into from
Jul 17, 2020

Commits on Jul 17, 2020

  1. fix(action): set entrypoint type to string

    Update the action.yaml file to pass the `entrypoint` parameter as a
    single string, rather than a sequence of arguments.
    
    act expects the entrypoint to be of type string[]. However, the GitHub
    runner expects type string. Because of this disconnect, workflow files
    that pass their act tests throw exceptions when ran on GitHub hosted
    runners, and vice-versa.
    
    To work around this issue, the act JUnit tests have been temporarily
    ignored until this issue can be resolved.
    
    To see the entrypoint parser in act, see https://git.io/JJZx0
    To see the entrypoint parter in the GH runner, see https://git.io/JJZxV
    
    Associated issue: #26
    ShahradR committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    0cfb762 View commit details
    Browse the repository at this point in the history