From e991fb5d61bd249edd9fd2ec87b9aa459a935ad2 Mon Sep 17 00:00:00 2001 From: Danielle Voznyy Date: Tue, 28 May 2024 00:15:07 -0400 Subject: [PATCH] fix: Pointing to nonexistent Dockerfile in publish action chore: Bump keepup --- .github/workflows/publish-images.yml | 4 +--- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-images.yml b/.github/workflows/publish-images.yml index 369c75f..2444800 100644 --- a/.github/workflows/publish-images.yml +++ b/.github/workflows/publish-images.yml @@ -19,10 +19,8 @@ jobs: matrix: include: - target: minecraft - dockerfile: minecraft.Dockerfile platforms: linux/amd64,linux/arm64 - target: proxy - dockerfile: proxy.Dockerfile platforms: linux/amd64 steps: - uses: actions/checkout@v4 @@ -51,7 +49,7 @@ jobs: - name: Build and push ${{ matrix.target }} uses: docker/build-push-action@v5 with: - file: ${{ matrix.dockerfile }} + file: Dockerfile platforms: ${{ matrix.platforms }} push: true target: ${{ matrix.target }} diff --git a/Dockerfile b/Dockerfile index fdf4440..6899731 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # Minimum Panel Version: 0.6.0 # ---------------------------------- FROM alpine as helper -ARG KEEPUP_VERSION='3.0.0-alpha.1' +ARG KEEPUP_VERSION='3.0.0-alpha.2' RUN wget -nv -q -O keepup.zip https://github.com/MineInAbyss/Keepup/releases/download/v${KEEPUP_VERSION}/keepup-shadow-${KEEPUP_VERSION}.zip \ # unzip file inside hocon-to-json.zip into /usr/local \ && unzip -q keepup.zip \