From f8b4936951d9619c0a34a08516f0e2db999b2d13 Mon Sep 17 00:00:00 2001 From: Adrian Marquis Date: Sun, 5 Apr 2026 14:20:52 +0200 Subject: [PATCH] Fix Version in release title --- .gitea/workflows/create_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/create_release.yml b/.gitea/workflows/create_release.yml index e1956f7..5e983f3 100644 --- a/.gitea/workflows/create_release.yml +++ b/.gitea/workflows/create_release.yml @@ -55,7 +55,7 @@ jobs: - name: Build and Push Container image for the Server run: | docker login ${IMAGE_URL} --username gitAutomationBot --password ${{ secrets.BOT_TOKEN }} - docker build -t ${IMAGE_URL}:${{ github.ref_name }} --network host /out/server + docker build -t ${IMAGE_URL}:${{ github.ref_name }} /out/server docker tag ${IMAGE_URL}:${{ github.ref_name }} ${IMAGE_URL}:latest docker push ${IMAGE_URL}:${{ github.ref_name }} docker push ${IMAGE_URL}:latest @@ -79,7 +79,7 @@ jobs: uses: akkuman/gitea-release-action@v1 if: ${{ failure() || success() }} with: - name: "Version ${{ github.ref_name }} (${{ steps.config.outputs.version }})" + name: "Version ${{ github.ref_name }}" body: > Modpack Server container image: `${{ steps.config.outputs.image_path }}/${{ steps.config.outputs.image_name }}:${{ github.ref_name }}` files: |-