Skip to content

Commit

Permalink
feat(ci): add release workflow with release-it
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Ryazanov committed Jul 14, 2023
1 parent e616cbd commit 6a9c4df
Show file tree
Hide file tree
Showing 9 changed files with 7,809 additions and 6,282 deletions.
52 changes: 21 additions & 31 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,34 @@
name: Release
name: release

on:
push:
branches:
- master

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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:
- run: echo 'Test'
# - uses: actions/checkout@v2
# with:
# token: ${{ secrets.TINKOFF_BOT_PAT }}
# fetch-depth: 0
#
# - name: Git Identity
# run: |
# git config --global user.name 'tinkoff-bot'
# git config --global user.email '[email protected]'
#
# - uses: actions/setup-node@v2
# with:
# node-version: '14.x'
# registry-url: 'https://registry.npmjs.org'
#
# - name: Clean install
# run: npm ci
#
# - name: Create release commit and tag
# run: |
# npm run version -- --no-push
#
# - name: Push release commit and tag
# run: git push --follow-tags
#
# - name: Publish packages
# run: npm run publish:ci
# env:
# NODE_AUTH_TOKEN: ${{ secrets.TINKOFF_NPM_AUTH_TOKEN }}
- uses: actions/checkout@v3

- 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: Release
run: npm run release
14 changes: 14 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"git": {
"commitMessage": "chore(release): version ${version}"
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
}
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 2.2.1
## 2.2.1

+ add check into the utility isEqual for comparision of functions by reference (#63)

Expand Down
Loading

0 comments on commit 6a9c4df

Please sign in to comment.