scoresaber-reloadedv3/.gitea/workflows/fix-bun-lock-file.yml

27 lines
622 B
YAML
Raw Normal View History

2024-10-09 14:30:24 +00:00
name: Fix bun lock file
on:
2024-10-09 14:33:08 +00:00
workflow_dispatch:
2024-10-09 14:30:24 +00:00
push:
paths:
2024-10-09 14:32:00 +00:00
- '**/package.json' # Detect changes in any package.json file in any directory
2024-10-09 14:30:24 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Commit bun lock file
run: |
git config --global user.email "helper@fascinated.cc"
git config --global user.name "Bun Fixer"
git add bun.lockb
git commit -m "Fix bun lock file"
git push