Private
Public Access
1
0

Fix CI YAML syntax error in build-apk job
Some checks failed
CI/CD Pipeline / Code Format (push) Successful in 11s
CI/CD Pipeline / Build Debian Package (push) Successful in 1m56s
CI/CD Pipeline / Build RPM Package (push) Successful in 3m21s
CI/CD Pipeline / Build Alpine Package (push) Failing after 11s
CI/CD Pipeline / Build Arch Package (push) Successful in 2m16s

- 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
This commit is contained in:
2026-04-13 21:01:07 +00:00
parent ce27a3c090
commit 82733b7aff

View File

@ -141,6 +141,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Install build dependencies
run: | run: |
apk add --no-cache rust cargo musl-dev openssl-dev git abuild apk add --no-cache rust cargo musl-dev openssl-dev git abuild
- name: Build APK package - name: Build APK package