Skip to content

ci(release-it): fix typo #3

ci(release-it): fix typo

ci(release-it): fix typo #3

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Initialize Git user
run: |
git config --global user.email "[email protected]"
git config --global user.name "Release workflow"
- run: bun run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}