mirror of
https://github.com/qwibitai/nanoclaw.git
synced 2026-06-12 18:11:51 +08:00
36 lines
997 B
YAML
36 lines
997 B
YAML
name: Bump version
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths: ['src/**', 'container/**']
|
|
|
|
jobs:
|
|
bump-version:
|
|
if: github.repository == 'nanocoai/nanoclaw'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/create-github-app-token@v1
|
|
id: app-token
|
|
with:
|
|
app-id: ${{ secrets.APP_ID }}
|
|
private-key: ${{ secrets.APP_PRIVATE_KEY }}
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
|
|
- name: Bump patch version
|
|
run: |
|
|
pnpm version patch --no-git-tag-version
|
|
git add package.json
|
|
git diff --cached --quiet && exit 0
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
VERSION=$(node -p "require('./package.json').version")
|
|
git commit -m "chore: bump version to $VERSION"
|
|
git pull --rebase
|
|
git push
|