ci(fdroid): fix invalid YAML in the submodule-aware checkout steps

The earlier submodule wiring left a mis-indented `with:` / `submodules:
recursive` block under `uses: actions/checkout@v4` (and, in ci.yaml, a second
stray `with:`), which made both workflows fail to parse
("mapping values are not allowed here"). Merge submodules into the single
correctly-indented `with:` block so CI actually checks out floret-kit.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-28 21:07:06 +02:00
parent f9bf9db141
commit 8f87dc3564
2 changed files with 5 additions and 6 deletions

View File

@@ -33,8 +33,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
with:
submodules: recursive
- name: Resolve version and whether it is a new release
id: v
@@ -84,8 +84,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
with:
submodules: recursive
- name: Setup Java
uses: actions/setup-java@v4