feat: updatePlayerName keeps created order in nameCount
Some checks failed
Push Pipeline / test (push) Successful in 46s
Push Pipeline / update_version (push) Successful in 7s
Push Pipeline / generate_licenses (push) Successful in 38s
Push Pipeline / generate_localizations (push) Successful in 31s
Push Pipeline / build (push) Has been cancelled
Push Pipeline / format (push) Has been cancelled
Push Pipeline / sort_arb_files (push) Has been cancelled

This commit is contained in:
2026-05-23 00:06:56 +02:00
parent c10bc9dbdc
commit 87c597f29a

View File

@@ -79,8 +79,8 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${GITEA_TOKEN} token: ${{ secrets.BOT_TOKEN }}
ref: $BRANCH_NAME ref: ${{ gitea.ref_name }}
- name: Increment version number - name: Increment version number
uses: stikkyapp/update-pubspec-version@v2 uses: stikkyapp/update-pubspec-version@v2
@@ -102,13 +102,16 @@ jobs:
generate_licenses: generate_licenses:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
GITEA_TOKEN: ${{ secrets.BOT_TOKEN }}
BRANCH_NAME: ${{ gitea.ref_name }}
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
token: $GITEA_TOKEN token: ${{ secrets.BOT_TOKEN }}
ref: $BRANCH_NAME ref: ${{ gitea.ref_name }}
# Required for Flutter action # Required for Flutter action
- name: Install jq - name: Install jq