From 4ef3eec2291fa20546c91a737dc891e7a3763230 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sat, 1 Feb 2025 07:11:38 +0000 Subject: [PATCH] Add curl package for Gitea Alpine Package Registry upload - Install curl package in Alpine build workflow - Ensure curl is available for package upload step - Prepare for package registry upload with authentication --- .github/workflows/build-alpine.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-alpine.yml b/.github/workflows/build-alpine.yml index 916dd03..216bbb6 100644 --- a/.github/workflows/build-alpine.yml +++ b/.github/workflows/build-alpine.yml @@ -82,6 +82,7 @@ jobs: - name: Upload to Gitea Alpine Package Registry if: github.event_name == 'push' && github.ref == 'refs/heads/master' run: | + apk add --no-cache curl curl --user "eric:df299a6e592a8bd829d018b7816e76d03756408d" \ --upload-file alpine_build/cpu-check-${{ env.PKG_VERSION }}-r${{ env.PKG_RELEASE }}.apk \ "https://git.ericxliu.me/api/packages/eric/alpine/v3.17/main" \ No newline at end of file