Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Build Linux App

on:
push:
branches: [ main ]
# on:
# push:
# branches: [ main ]

env:
CARGO_TERM_COLOR: always
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Build macOS App

on:
push:
branches: [ main ]
# on:
# push:
# branches: [ main ]

env:
CARGO_TERM_COLOR: always
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,16 @@ jobs:
name: pathfinder-windows-nsis-${{ github.sha }}
path: src-tauri/target/release/bundle/nsis/*.exe
retention-days: 30

- name: Create Release
if: github.ref == 'refs/heads/main'
continue-on-error: true
uses: softprops/action-gh-release@v1
with:
files: |
src-tauri/target/release/bundle/msi/*.msi
src-tauri/target/release/bundle/nsis/*.exe
generate_release_notes: true
draft: true
tag_name: v${{ github.run_number }}
name: PathFinder v${{ github.run_number }}