From 3602c6eb8c7e31d94a798856c6668e0fe5b8d361 Mon Sep 17 00:00:00 2001 From: luttje <2738114+luttje@users.noreply.github.com> Date: Sun, 1 Dec 2024 18:44:47 +0100 Subject: [PATCH] Fix downloading artifacts, merging into dist --- .github/workflows/publish_version.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish_version.yml b/.github/workflows/publish_version.yml index 1e73e57..10ee1ad 100644 --- a/.github/workflows/publish_version.yml +++ b/.github/workflows/publish_version.yml @@ -122,17 +122,12 @@ jobs: uses: actions/download-artifact@v4 with: path: dist - - - name: Install GitHub CLI - run: | - sudo apt-get update - sudo apt-get install -y gh - - - name: Authenticate GitHub CLI - run: echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token + merge-multiple: true - name: Create a new release id: create_release + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release create latest \ --prerelease \