Skip to content

chore(dev): release 1.0.0 #5

chore(dev): release 1.0.0

chore(dev): release 1.0.0 #5

Workflow file for this run

on:
push:
branches:
- "release-please--**"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run build
- run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git add -f dist
git commit -m "chore: Build dist"
git push