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
name: npm publish on: push: branches: - master jobs: npm-publish: name: npm publish runs-on: ubuntu-latest steps: - name: checkout repository uses: actions/checkout@master - name: setup Node.js uses: actions/setup-node@master with: node-version: "12.x" - name: Install npm dependencies (npm ci) run: npm ci - name: npm publish id: publish uses: JS-DevTools/npm-publish@v1 with: token: ${{ secrets.NPM_AUTH_TOKEN }} - name: output version name run: echo type = ${{ steps.publish.type }}, version = ${{ steps.publish.version }}
output
type = , version =
The text was updated successfully, but these errors were encountered:
Oh, sorry. The example in the docs was missing the .outputs property. I've updated the ReadMe to fix that.
.outputs
Here's the change you'll need to make to your script:
run: echo type = ${{ steps.publish.outputs.type }}, version = ${{ steps.publish.outputs.version }}
Sorry, something went wrong.
No branches or pull requests
output
The text was updated successfully, but these errors were encountered: