build
Some checks failed
Build and Push Minecraft Docker Images / build (push) Failing after 14s

This commit is contained in:
2025-07-03 05:44:19 -07:00
parent 88db0ca477
commit ca63c263a5
6 changed files with 14 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
name: Build and Push Multi-Arch Docker Images name: Build and Push Minecraft Docker Images
on: on:
push: push:
@@ -25,8 +25,8 @@ jobs:
run: | run: |
IMAGE_REGISTRY=gitea.fithwum.tech IMAGE_REGISTRY=gitea.fithwum.tech
IMAGE_ORG=fithwum IMAGE_ORG=fithwum
IMAGE_REPO=base-image IMAGE_REPO=minecraft
IMAGE_NAME=debian IMAGE_NAME=minecraft
# Set the tag based on the folder name (vanilla, TESTING, fabric) # Set the tag based on the folder name (vanilla, TESTING, fabric)
IMAGE_TAG_VANILLA=vanilla IMAGE_TAG_VANILLA=vanilla
@@ -38,9 +38,9 @@ jobs:
echo "IMAGE_TAG_FABRIC=${IMAGE_TAG_FABRIC}" >> $GITHUB_ENV echo "IMAGE_TAG_FABRIC=${IMAGE_TAG_FABRIC}" >> $GITHUB_ENV
# Set image names for each subfolder Dockerfile # Set image names for each subfolder Dockerfile
IMAGE_VANILLA=${IMAGE_REGISTRY}/${IMAGE_ORG}/${IMAGE_REPO}/${IMAGE_NAME}:${IMAGE_TAG_VANILLA} IMAGE_VANILLA=${IMAGE_REGISTRY}/${IMAGE_ORG}/${IMAGE_NAME}:${IMAGE_TAG_VANILLA}
IMAGE_TESTING=${IMAGE_REGISTRY}/${IMAGE_ORG}/${IMAGE_REPO}/${IMAGE_NAME}:${IMAGE_TAG_TESTING} IMAGE_TESTING=${IMAGE_REGISTRY}/${IMAGE_ORG}/${IMAGE_NAME}:${IMAGE_TAG_TESTING}
IMAGE_FABRIC=${IMAGE_REGISTRY}/${IMAGE_ORG}/${IMAGE_REPO}/${IMAGE_NAME}:${IMAGE_TAG_FABRIC} IMAGE_FABRIC=${IMAGE_REGISTRY}/${IMAGE_ORG}/${IMAGE_NAME}:${IMAGE_TAG_FABRIC}
echo "IMAGE_VANILLA=${IMAGE_VANILLA}" >> $GITHUB_ENV echo "IMAGE_VANILLA=${IMAGE_VANILLA}" >> $GITHUB_ENV
echo "IMAGE_TESTING=${IMAGE_TESTING}" >> $GITHUB_ENV echo "IMAGE_TESTING=${IMAGE_TESTING}" >> $GITHUB_ENV
@@ -57,16 +57,16 @@ jobs:
run: | run: |
docker buildx build --platform linux/amd64,linux/arm64 \ docker buildx build --platform linux/amd64,linux/arm64 \
--push -t ${IMAGE_VANILLA} \ --push -t ${IMAGE_VANILLA} \
./minecraft/vanilla ./vanilla
- name: Build and Push testing Docker Image - name: Build and Push testing Docker Image
run: | run: |
docker buildx build --platform linux/amd64,linux/arm64 \ docker buildx build --platform linux/amd64,linux/arm64 \
--push -t ${IMAGE_TESTING} \ --push -t ${IMAGE_TESTING} \
./minecraft/testing ./testing
- name: Build and Push fabric Docker Image - name: Build and Push fabric Docker Image
run: | run: |
docker buildx build --platform linux/amd64,linux/arm64 \ docker buildx build --platform linux/amd64,linux/arm64 \
--push -t ${IMAGE_FABRIC} \ --push -t ${IMAGE_FABRIC} \
./minecraft/fabric ./minecraft-fabric

View File

@@ -1,5 +1,5 @@
FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye
LABEL maintainer "fithwum" LABEL maintainer="fithwum"
# Environment Variables # Environment Variables
ENV ACCEPT_EULA="" ENV ACCEPT_EULA=""

View File

@@ -1,5 +1,5 @@
FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye
LABEL maintainer "fithwum" LABEL maintainer="fithwum"
# Environment Variables # Environment Variables
ENV ACCEPT_EULA="" ENV ACCEPT_EULA=""

View File

@@ -1,5 +1,5 @@
FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye
LABEL maintainer "fithwum" LABEL maintainer="fithwum"
ENV ACCEPT_EULA="false" ENV ACCEPT_EULA="false"
ENV GAME_PORT=25565 ENV GAME_PORT=25565

View File

@@ -1,5 +1,5 @@
FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye
LABEL maintainer "fithwum" LABEL maintainer="fithwum"
# Environment Variables # Environment Variables
ENV ACCEPT_EULA="" ENV ACCEPT_EULA=""

View File

@@ -1,5 +1,5 @@
FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye FROM gitea.fithwum.tech/fithwum/base-image:debian-bullseye
LABEL maintainer "fithwum" LABEL maintainer="fithwum"
# Environment Variables # Environment Variables
ENV ACCEPT_EULA="" ENV ACCEPT_EULA=""