Skip to content

chore: sync minor version with npm #27

chore: sync minor version with npm

chore: sync minor version with npm #27

Workflow file for this run

name: release
on:
push:
branches:
- master
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
jobs:
release:
if: "!contains(github.event.head_commit.message, 'chore(release)')"
runs-on: ubuntu-latest
steps:
- name: Initialize Git user
run: |
git config --global user.name 'tinkoff-bot'
git config --global user.email 'tinkoff-bot@users.noreply.github.com'
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.TINKOFF_BOT_PAT }}
- uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Copy release files
run: npm run copy-release-files
- name: Release
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.TINKOFF_BOT_PAT }}