Troubleshooting reusable workflows for CI #1808
Unanswered
LionOnTheWeb
asked this question in
Q&A
Replies: 1 comment
-
Managed to get a bit further with this by defining the setup and test jobs first like so: setup:
uses: ./.github/workflows/setup.yml
test:
uses: ./.github/workflows/test.yml
with:
branch: next Now it passes the setup stage but I'm unable to use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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