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
type
Setup:
- name: Publish New ESLint Release on npm uses: JS-DevTools/npm-publish@v2 with: token: ${{ secrets.NPM_PUBLISH_TOKEN }} strategy: upgrade - if: ${{ !steps.publish.outputs.type }} run: echo 'Version already exists' && exit 1
Does not work as expected. The if triggers every time even on successful upgrades.
if
This also does not work:
- name: Publish New ESLint Release on npm uses: JS-DevTools/npm-publish@v2 with: token: ${{ secrets.NPM_PUBLISH_TOKEN }} strategy: upgrade - if: ${{ steps.publish.outputs.type == '' }} run: echo 'Version already exists' && exit 1
Is there something I'm doing wrong?
The text was updated successfully, but these errors were encountered:
Nvm, issue was I had name: publish not id: publish.
name: publish
id: publish
Sorry, something went wrong.
No branches or pull requests
Setup:
Does not work as expected. The
if
triggers every time even on successful upgrades.This also does not work:
Is there something I'm doing wrong?
The text was updated successfully, but these errors were encountered: