We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to the official docs the syntax for referring to an action from a public repo is {owner}/{repo}@{ref} or {owner}/{repo}/{path}@{ref}.
{owner}/{repo}@{ref}
{owner}/{repo}/{path}@{ref}
act does not support the {owner}/{repo}/{path}@{ref} syntax.
act
Given workflow path-example.yml
path-example.yml
name: Path Example on: pull_request jobs: example: runs-on: ubuntu-latest steps: - uses: cloudposse/actions/github/slash-command-dispatch@0.14.0
act treats the path as part of the repo name, not a path within it
$ act [Path Example/example] 🚀 Start image=node:12.6-buster-slim [Path Example/example] 🐳 docker run image=node:12.6-buster-slim entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[] [Path Example/example] 🐳 docker cp src=/Users/nuru/dev/example/. dst=/github/workspace [Path Example/example] ⭐ Run cloudposse/actions/github/slash-command-dispatch@0.14.0 [Path Example/example] ☁ git clone 'https://github.com/cloudposse/actions' # ref=0.14.0 [Path Example/example] ❌ Failure - cloudposse/actions/github/slash-command-dispatch@0.14.0 Error: open /Users/nuru/.cache/act/cloudposse-actions-github-slash-command-dispatch@0.14.0/action.yaml: no such file or directory
The text was updated successfully, but these errors were encountered:
fix #110 - support path in action
dd771e1
6e1da1a
fixed on master, will be in next release.
Sorry, something went wrong.
available in v0.2.5
v0.2.5
No branches or pull requests
According to the official docs the syntax for referring to an action from a public repo is
{owner}/{repo}@{ref}
or{owner}/{repo}/{path}@{ref}
.act
does not support the{owner}/{repo}/{path}@{ref}
syntax.Given workflow
path-example.yml
act
treats the path as part of the repo name, not a path within itThe text was updated successfully, but these errors were encountered: