Skip to content

refactor: version auto increment test [WTEL-5567] (https://webitel.a… #5

refactor: version auto increment test [WTEL-5567] (https://webitel.a…

refactor: version auto increment test [WTEL-5567] (https://webitel.a… #5

Workflow file for this run

name: styleguide client release
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v2
# Set up Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
registry-url: https://registry.npmjs.org/
# Increment version in package.json
- name: Increment version in package.json
uses: copapow/version-bump-package@v1
with:
patch_label: version-patch
github_token: ${{ secrets.GITHUB_TOKEN }}
# Authenticate with npm
- name: Authenticate with npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc
# Publish to npm
- name: Publish to npm
run: npm run publish-styleguide
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}