From 7ae167bd653620a67c9283edede9552b1bc52800 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20H=C3=A4u=C3=9Fler?= Date: Thu, 28 May 2026 17:16:36 +0200 Subject: [PATCH] [BUGFIX] Exclude `Dockerfile` from release assets --- .github/workflows/release.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c72bfe96..c8ab1fb1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -44,6 +44,16 @@ jobs: dockerhub-token: ${{ secrets.DOCKERHUB_TOKEN }} ghcr-token: ${{ secrets.GITHUB_TOKEN }} + - name: 'Re-upload PHAR artifact without Dockerfile' + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 + with: + name: ${{ steps.phar.outputs.artifact-name }} + path: | + ${{ env.PHAR_FILE }} + ${{ env.PHAR_FILE }}.asc + if-no-files-found: error + overwrite: true + docs: name: 'Build and deploy documentation' runs-on: ubuntu-latest