test
Some checks failed
Build Alpine RootFS and Docker Image (latest) / build-rootfs (push) Failing after 12s
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:32:08 -07:00
parent 09b5cd0f3c
commit dbfa0b8b3a

View File

@@ -20,7 +20,6 @@ env:
jobs:
build-rootfs:
runs-on: docker-build
steps:
- name: Checkout repo
uses: actions/checkout@v3
@@ -30,17 +29,10 @@ jobs:
mkdir -p latest
bash base-image-script/alpine-base_pt1.sh
- name: Run Alpine build scripts inside privileged container
- name: Run build scripts inside docker container
run: |
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 && \
docker run --rm --privileged -v ${{ github.workspace }}:/workspace -w /workspace alpine:latest \
bash base-image-script/alpine-base_pt1.sh
"
- name: Show tarball
run: ls -lh ${{ env.OUTPUT_TAR }}