Skip to content

chore: add repository field to all packages, bump to v0.1.3 #29

chore: add repository field to all packages, bump to v0.1.3

chore: add repository field to all packages, bump to v0.1.3 #29

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
if: contains(github.event.head_commit.message, 'chore(release)')
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
registry-url: https://registry.npmjs.org
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true