From bf1df9bc90b640ebc7ca87fc49ad7795d993eaf5 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sat, 6 May 2023 12:22:04 +0200 Subject: [PATCH] Try listing generated artifacts in workflow --- .github/workflows/release.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 07a1984..615c798 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -119,10 +119,14 @@ jobs: runs-on: ubuntu-latest needs: ["init", "build"] steps: - - name: Download artifacts + - name: Download binaries uses: actions/download-artifact@v3 with: - path: ./artifacts + path: ./binaries + + - name: List binaries + shell: bash + run: ls -lhrt ./binaries - name: Create release uses: softprops/action-gh-release@v1 @@ -131,5 +135,6 @@ jobs: with: name: ${{ needs.init.outputs.version }} tag_name: v${{ needs.init.outputs.version }} - files: ./artifacts/lune-** + fail_on_unmatched_files: true + files: ./binaries/lune-** draft: true