mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 04:50:36 +00:00
Try listing generated artifacts in workflow
This commit is contained in:
parent
8000ed6c8c
commit
bf1df9bc90
1 changed files with 8 additions and 3 deletions
11
.github/workflows/release.yaml
vendored
11
.github/workflows/release.yaml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue