From cbb5ae38cebdb1d332f00034c9475147a4fca96e Mon Sep 17 00:00:00 2001 From: Echo Date: Mon, 13 Apr 2026 21:01:07 +0000 Subject: [PATCH] Fix CI YAML syntax error in build-apk job - Separated checkout step from dependency installation step - Each step must have either 'uses:' OR 'run:', not both - Added proper 'name:' field for install dependencies step --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94408c9..603f504 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -141,6 +141,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Install build dependencies run: | apk add --no-cache rust cargo musl-dev openssl-dev git abuild - name: Build APK package