Skip to content

fix: restore package entry point and export types #12

fix: restore package entry point and export types

fix: restore package entry point and export types #12

Workflow file for this run

name: Auto Version Bump
on:
push:
branches:
- main
paths-ignore:
- 'package.json'
- 'package-lock.json'
jobs:
version-bump:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Bump version
run: |
npm version patch -m "chore: bump version to %s [skip ci]"
git push --follow-tags