Skip to content

Commit

Permalink
Update packer.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Wulian233 authored Aug 5, 2024
1 parent d3f20af commit f9cfdff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/packer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:

- name: Build with PyInstaller (Windows)
run: |
pyinstaller -F -i PyBuild/icon.ico -n FeedTheForge-windows --add-data feedtheforge/lang:feedtheforge/lang __main__.py
python -m PyInstaller -F -i PyBuild/icon.ico -n FeedTheForge-Windows --add-data feedtheforge/lang:feedtheforge/lang __main__.py
- name: Upload (Windows)
uses: actions/upload-artifact@v4
with:
name: FeedTheForge-windows
name: FeedTheForge-Windows
path: dist/*

build-macos:
Expand All @@ -48,7 +48,7 @@ jobs:

- name: Build with PyInstaller (macOS)
run: |
pyinstaller -F -i PyBuild/icon.icns -n FeedTheForge-macOS --add-data feedtheforge/lang:feedtheforge/lang __main__.py
python -m PyInstaller -F -i PyBuild/icon.icns -n FeedTheForge-macOS --add-data feedtheforge/lang:feedtheforge/lang __main__.py
- name: Upload (macOS)
uses: actions/upload-artifact@v4
Expand All @@ -65,7 +65,7 @@ jobs:

- name: Build with PyInstaller (Linux)
run: |
pyinstaller -F -n FeedTheForge-Linux --add-data feedtheforge/lang:feedtheforge/lang __main__.py
python -m PyInstaller -F -n FeedTheForge-Linux --add-data feedtheforge/lang:feedtheforge/lang __main__.py
- name: Upload (Linux)
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit f9cfdff

Please sign in to comment.