From 798a40adc32dc597e6423ce0143df9f4c97e605f Mon Sep 17 00:00:00 2001 From: Roland Bewick Date: Wed, 26 Jun 2024 14:04:33 +0700 Subject: [PATCH] fix: merge multiple artifacts into same directory in release workflow --- .github/workflows/create-release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create-release.yaml b/.github/workflows/create-release.yaml index 10fef953..2ea0cc1d 100644 --- a/.github/workflows/create-release.yaml +++ b/.github/workflows/create-release.yaml @@ -15,12 +15,14 @@ jobs: with: pattern: albyhub-Server-Linux-* path: artifacts + merge-multiple: true - name: Download desktop archives uses: actions/download-artifact@v4 with: pattern: albyhub-Desktop-* path: artifacts + merge-multiple: true - name: Create release without tag if: github.ref_type != 'tag'