Skip to content

Commit

Permalink
ci: Release ZIP artifacts as well
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Sep 6, 2024
1 parent 42c7148 commit 7248d5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,16 @@ jobs:
- name: Rename the output artifact
run: |
mv upload/*.${{ matrix.os.extension }} "upload/TriliumNextNotes ${{ matrix.os.name }} ${{ matrix.arch }}.${{matrix.os.extension}}"
mv upload/*.zip "upload/TriliumNextNotes ${{ matrix.os.name }} ${{ matrix.arch }}.zip"
- name: Publish test
uses: softprops/action-gh-release@v2
with:
draft: true
tag_name: test_release
fail_on_unmatched_files: true
files: upload/*.${{matrix.os.extension}}
files: |
upload/*.${{matrix.os.extension}}
upload/*.zip
build_linux_server-x64:
name: Build Linux Server x86_64
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7248d5b

Please sign in to comment.