mirror of
https://github.com/lune-org/lune.git
synced 2024-12-13 13:30:38 +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
|
runs-on: ubuntu-latest
|
||||||
needs: ["init", "build"]
|
needs: ["init", "build"]
|
||||||
steps:
|
steps:
|
||||||
- name: Download artifacts
|
- name: Download binaries
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: ./artifacts
|
path: ./binaries
|
||||||
|
|
||||||
|
- name: List binaries
|
||||||
|
shell: bash
|
||||||
|
run: ls -lhrt ./binaries
|
||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
|
@ -131,5 +135,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: ${{ needs.init.outputs.version }}
|
name: ${{ needs.init.outputs.version }}
|
||||||
tag_name: v${{ needs.init.outputs.version }}
|
tag_name: v${{ needs.init.outputs.version }}
|
||||||
files: ./artifacts/lune-**
|
fail_on_unmatched_files: true
|
||||||
|
files: ./binaries/lune-**
|
||||||
draft: true
|
draft: true
|
||||||
|
|
Loading…
Reference in a new issue