fix: Type exports now should work for any importing TS module #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatic release tagging and publishing | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Tag release | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Install pnpm | |
run: npm -g i pnpm | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GIT_AUTHOR_NAME: bhc-bot | |
GIT_AUTHOR_EMAIL: contact@bhc-it.com | |
GIT_COMMITTER_NAME: bhc-bot | |
GIT_COMMITTER_EMAIL: contact@bhc-it.com | |
run: pnpx semantic-release |