Skip to content

Commit

Permalink
wip16
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavosbarreto committed Mar 13, 2024
1 parent d90b33a commit 6a64f09
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,17 @@ jobs:
yarn build
npx electron-builder --${{ matrix.platform }} ${{ matrix.target }} -p never $EXTRA_ARGS
- name: Publish
- name: Upload artifact
if: "contains(github.ref, 'refs/tags/v')"
uses: actions/upload-artifact@v4
with:
name: Linux
path: dist/*.AppImage
- name: Publish
if: "contains(github.ref, 'refs/tags/v')"
uses: softprops/action-gh-release@v2
with:
draft: true
generate_release_notes: true
files: |
*.AppImage

0 comments on commit 6a64f09

Please sign in to comment.