diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1e68c6c..9f15571 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -26,11 +26,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - submodules: recursive with: # Full history so the base..HEAD diff below has a merge-base. fetch-depth: 0 + submodules: recursive # Cheap, always-on guard: the release build must stay reproducible for the # official F-Droid repo (no AGP VCS-info embedding). Runs regardless of diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 82826ea..166ab86 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -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