update modpack step
Build and Publish Docker Image / build (push) Failing after 11s

This commit is contained in:
zardzul
2026-02-13 11:13:04 +01:00
parent 67a4e4568d
commit 2fd88169dc
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -13,6 +13,14 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Download modpack from release
run: |
curl -L -H "Authorization: token ${{ secrets.GIT_PASSWORD }}" \
-o modpack.zip \
"https://git.cashew.network/api/v1/repos/${{ github.repository }}/releases/tags/modpack-latest/assets/modpack.zip"
unzip -q modpack.zip -d modpack
rm modpack.zip
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
+1 -1
View File
@@ -1,6 +1,6 @@
services: services:
ironveil: ironveil:
image: git.cashew.network/${{ github.repository }}:latest image: git.cashew.network/zardzul/minecraft-server-ironveil:latest
container_name: ironveil container_name: ironveil
volumes: volumes:
- ./world:/server/world - ./world:/server/world