Skip to content

fix: typescript error on i18n #126

fix: typescript error on i18n

fix: typescript error on i18n #126

Workflow file for this run

name: Release
on:
push:
branches:
- main
env:
NODE_VERSION: '22.22'
PNPM_VERSION: '11.10.0'
jobs:
release:
name: Release with standard-version
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm
with:
node-version: ${{ env.NODE_VERSION }}
pnpm-version: ${{ env.PNPM_VERSION }}
- name: Run release
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
pnpx standard-version
- name: Push changes and tags
run: |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git push origin main --follow-tags --force-with-lease