From 644751fa730b82684904749d33bbe6e13949e665 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Tue, 26 Nov 2024 08:46:03 +0100 Subject: [PATCH] Restore binaries upload for nightlies --- .github/workflows/nightly.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 92c7ba64a0..d5fd0e98d2 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -91,9 +91,13 @@ jobs: branch_specific="" is_main else f"?branch={short_version}", )) - - name: Update nightly release description (with date) + - name: Update nightly release description and binaries if: always() run: | gh release edit ${{ inputs.release_tag }} --title "${{ steps.rename-installers.outputs.cura_version }}" --notes-file release-notes.md + + for file in "installers/*"; do + gh release upload ${{ inputs.release_tag }} $file --clobber + done env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}