dsfgdfsgh
Some checks failed
Build and Push Alpine RootFS and Docker Images / build-and-upload-rootfs (push) Failing after 5s
Build and Push Alpine RootFS and Docker Images / build-and-push-docker-images (push) Has been skipped
Build and Push Alpine RootFS and Docker Images / generate-changelogs (push) Has been skipped
Build and Push Alpine RootFS and Docker Images / generate-build-info (push) Has been skipped

This commit is contained in:
2025-07-13 06:52:34 -07:00
parent 6b01f608c6
commit 5284c71aaa

View File

@@ -30,7 +30,7 @@ jobs:
mkdir -p output
for version in $ALPINE_VERSIONS; do
echo "[INFO] Building Alpine $version rootfs"
docker build --build-arg ALPINE_VERSION=$version -t alpine-builder:$version -f alpine/Dockerfile .
docker build --build-arg ALPINE_VERSION=$version -t alpine-builder:$version -f .
mkdir -p output/$version
cid=$(docker create alpine-builder:$version)
@@ -98,7 +98,7 @@ jobs:
for version in $ALPINE_VERSIONS; do
IMAGE="${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_ORG }}/${{ env.IMAGE_REPO }}:$version"
echo "[INFO] Building and pushing $IMAGE"
docker buildx build --platform linux/amd64 -t "$IMAGE" -f upload-repo/$version/Dockerfile --push upload-repo/$version
docker buildx build --platform linux/amd64 -t "$IMAGE" -f /$version/Dockerfile --push upload-repo/$version
done
generate-changelogs: