-
Notifications
You must be signed in to change notification settings - Fork 36
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
Add support to make yarn usable in setup field #3
Comments
Can you share your whole workflow file? This isn’t a problem with yarn. |
This doesn't work. name: Main workflow
on:
release:
types:
- edited
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Publish action
uses: JasonEtco/build-and-tag-action@v1
with:
setup: "yarn --frozen-lockfile && yarn build"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
That’s not your whole workflow file. Please share the entire file or I can’t help you. |
The problem is probably due to Node.js specific unique behavior due to the lack of yarn subcommands, so I don't think the entire workflow is necessary. Anyway, I updated that. |
There's currently a problem with |
Indeed. |
The text was updated successfully, but these errors were encountered: