From d1fd4393df93c7a73022a905d89e35bceaaccc3e Mon Sep 17 00:00:00 2001 From: fithwum Date: Sun, 6 Jul 2025 08:17:07 -0700 Subject: [PATCH] test --- .gitea/workflows/base-build.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/base-build.yml b/.gitea/workflows/base-build.yml index d10085e..a4561ca 100644 --- a/.gitea/workflows/base-build.yml +++ b/.gitea/workflows/base-build.yml @@ -25,10 +25,17 @@ jobs: - name: Checkout repo uses: actions/checkout@v3 - - name: Run Alpine build scripts + - name: Run Alpine build scripts inside privileged container run: | - mkdir -p latest - bash base-image-script/alpine-base_pt1.sh + docker run --rm --privileged \ + -v "${{ github.workspace }}":/workspace \ + -w /workspace \ + alpine:latest \ + sh -c " + apk add --no-cache bash curl wget sudo git jq && \ + chmod +x base-image-script/*.sh && \ + bash base-image-script/alpine-base_pt1.sh + " - name: Show tarball run: ls -lh ${{ env.OUTPUT_TAR }}