Skip to content

docs: Fix typo README. #18

docs: Fix typo README.

docs: Fix typo README. #18

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Configure Git identity
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
- name: Stash prepack changes
run: |
git stash push -m "Stashing prepack changes" || echo "No prepack changes to stash"
- name: Sync dev branch with main
run: |
git fetch origin dev:dev || git checkout -b dev
git checkout dev
git pull origin dev || true
git merge main --ff-only || (git merge main && git push origin dev)
git push origin dev
- name: Clean up stash
if: always()
run: |
git stash drop || echo "No stash to drop"