Skip to content

chore: bump to v1.2.1 with security release notes #1

chore: bump to v1.2.1 with security release notes

chore: bump to v1.2.1 with security release notes #1

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create GitHub Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref_name }}
body: |
See [CHANGELOG.md](https://github.com/baagad-ai/code-surgeon/blob/main/CHANGELOG.md) for changes in this release.
draft: false
prerelease: false