test
Some checks failed
Build Alpine RootFS and Docker Image (latest) / build-rootfs (push) Failing after 8s
Build Alpine RootFS and Docker Image (latest) / push-tarball (push) Has been skipped
Build Alpine RootFS and Docker Image (latest) / push-docker (push) Has been cancelled
Build Alpine RootFS and Docker Image (latest) / update-changelog (push) Has been cancelled
Build Alpine RootFS and Docker Image (latest) / update-build-info (push) Has been cancelled

This commit is contained in:
2025-07-06 08:17:07 -07:00
parent 6e2cc87bb1
commit d1fd4393df

View File

@@ -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 }}