From 8000ed6c8cfb9bd7b46348438c224980ae0c2830 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sat, 6 May 2023 12:05:43 +0200 Subject: [PATCH] Fix artifacts for new release action --- .github/workflows/release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 15920d9..07a1984 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -121,6 +121,8 @@ jobs: steps: - name: Download artifacts uses: actions/download-artifact@v3 + with: + path: ./artifacts - name: Create release uses: softprops/action-gh-release@v1 @@ -129,5 +131,5 @@ jobs: with: name: ${{ needs.init.outputs.version }} tag_name: v${{ needs.init.outputs.version }} - files: lune-* + files: ./artifacts/lune-** draft: true