Skip to content

Update Version

Update Version #22

Workflow file for this run

name: Update Version
on:
push:
branches: [ main ]
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun run index.ts
- run: |-
git add .
git diff
git config --global user.email "github-action-bot@example.com"
git config --global user.name "GitHub Action Bot"
git commit -m "chore: updated version" -a || echo "No update available"
git push
name: Commit and Push to Repository