Skip to content

Commit

Permalink
fix: Pointing to nonexistent Dockerfile in publish action
Browse files Browse the repository at this point in the history
chore: Bump keepup
  • Loading branch information
0ffz committed May 28, 2024
1 parent 8782260 commit e991fb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit e991fb5

Please sign in to comment.