stage #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "publish" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
bump-version: | |
name: "publish" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout source code" | |
uses: "actions/checkout@v3" | |
with: | |
ref: ${{ github.ref }} | |
# Setup Node.js | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
# Automated Version Bump | |
- name: "Automated Version Bump" | |
uses: "phips28/gh-action-bump-version@master" | |
with: | |
tag-prefix: "" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Install packages | |
# - name: "Installing" | |
# run: npm install | |
- run: npm ci | |
# Publish the package | |
- name: "Publishing to Npm registry" | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |