Try listing generated artifacts in workflow

This commit is contained in:
Filip Tibell 2023-05-06 12:22:04 +02:00
parent 8000ed6c8c
commit bf1df9bc90
No known key found for this signature in database

View file

@ -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