fix player data not showing when claiming the profile
Some checks failed
Deploy Backend / deploy (push) Failing after 1m5s
Deploy Website / deploy (push) Failing after 1m29s

This commit is contained in:
Lee
2024-10-17 02:40:18 +01:00
parent ae4e6912e5
commit 42d133bbbb
5 changed files with 9 additions and 38 deletions

View File

@ -1,29 +0,0 @@
name: Fix bun lock file (Renovate)
on:
workflow_dispatch:
push:
branches-ignore:
- master
paths:
- '**/package.json' # Detect changes in any package.json file in any directory
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