From 67e88d9c292d27a13b253adf5c0b4107089711d8 Mon Sep 17 00:00:00 2001 From: Simeon Radivoev Date: Sun, 1 Mar 2026 18:54:18 +0200 Subject: [PATCH] build: added artifact upload to release update --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03baa14..f7ea1c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,6 +74,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Download artifacts + uses: actions/download-artifact@v5 + - name: Publish Release uses: ncipollo/release-action@v1 with: @@ -82,4 +85,6 @@ jobs: tag: ${{ needs.create-draft.outputs.current-version }} omitNameDuringUpdate: true omitBodyDuringUpdate: true + replacesArtifacts: true token: ${{ secrets.GITHUB_TOKEN }} + artifacts: ${{ github.workspace }}/**/*.zip