You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to build a CI workflow to deploy my project to Vercel. In trying to abstract my workflow jobs into separate files that I reuse for my deployment jobs I encounter this error:
Can't find 'action.yml', 'action.yaml' or 'Dockerfile' under '/home/runner/work/repo/project/.github/workflows/setup.yml'. Did you forget to run actions/checkout before running your local action?
Reproduce
My workflow setup includes these files in my project's ./.github/workflows/ directory:
ci.yml (main workflow)
release.yml (main workflow)
enforcer.yml (helper - free way of main branch protection)
setup.yml (helper - checks out code, sets up Node/pnpm, runs install)
test.yml (helper - returns echo-- no unit or integration tests yet)
Here's how ci.yml and setup.yml are configured to work together:
ChatGPT is of no help here, can someone please shine a light on what the issue is here? I've tried using different versions of actions/checkout to no avail.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Problem
Trying to build a CI workflow to deploy my project to Vercel. In trying to abstract my workflow jobs into separate files that I reuse for my deployment jobs I encounter this error:
Reproduce
My workflow setup includes these files in my project's
./.github/workflows/
directory:Here's how
ci.yml
andsetup.yml
are configured to work together:ChatGPT is of no help here, can someone please shine a light on what the issue is here? I've tried using different versions of
actions/checkout
to no avail.Beta Was this translation helpful? Give feedback.
All reactions