Skip to content

Commit

Permalink
Make Win/MacOS workflows save artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
isatsam committed Sep 15, 2024
1 parent 67270c6 commit db2b31a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/macos_dev.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: MacOS Development Builds
on: [push]
permissions:
contents: write
jobs:
pyinstaller-build:
runs-on: macos-latest
Expand All @@ -11,4 +13,9 @@ jobs:
pyinstaller_ver: "==6.10.0"
spec: "vfs_explorer/build/build_macos.spec"
requirements: "requirements.txt"
upload_exe_with_name: "vfs_explorer_windows_dev"
upload_exe_with_name: "vfs_explorer_macos_dev"
- name: Add to release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: "vfs_explorer_macos_dev"
7 changes: 7 additions & 0 deletions .github/workflows/windows_dev.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: Windows Development Builds
on: [push]
permissions:
contents: write
jobs:
pyinstaller-build:
runs-on: windows-latest
Expand All @@ -12,3 +14,8 @@ jobs:
spec: "vfs_explorer/build/build.spec"
requirements: "requirements.txt"
upload_exe_with_name: "vfs_explorer_windows_dev"
- name: Add to release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: "vfs_explorer_windows_dev"

0 comments on commit db2b31a

Please sign in to comment.