Skip to content

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

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

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

Workflow file for this run

name: styleguide client release

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: jobs
on:
push:
branches:
- main
jobs:
jobs:
bump-package-version:
# Only run if the PR closed by merging
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: copapow/version-bump-package@v1
with:
patch_label: version-patch
default_branch: main
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: EndBug/add-and-commit@v7
with:
branch: main
message: 'Bump package version'
publish:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# 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/
# 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 }}