Skip to content

Commit

Permalink
Merge pull request #54 from Garulf/change-nuitka-onefile
Browse files Browse the repository at this point in the history
Remove onefile build option
  • Loading branch information
Garulf authored Apr 18, 2023
2 parents 7fe2c60 + 6776f87 commit d220d54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,18 @@ jobs:
pip install -r ./requirements-dev.txt
- name: Build
run: |
python -m nuitka run.py --assume-yes-for-downloads --standalone --onefile --windows-icon-from-ico=icon.png
python -m nuitka run.py --assume-yes-for-downloads --standalone --windows-icon-from-ico=icon.png --include-data-file=plugin.json=. --include-data-file=LICENSE=. --include-data-file=SettingsTemplate.yaml=.
- name: Get Plugin's version
id: version
uses: notiz-dev/github-action-json-property@release
with:
path: "plugin.json"
prop_path: "Version"
- name: Move files to staging
run: |
mkdir -p staging
mv run.exe staging
mv plugin.json staging
mv SettingsTemplate.yaml staging
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: "zip"
directory: "./staging"
directory: "./run.dist"
filename: "${{github.event.repository.name}}.zip"
- name: Publish
uses: softprops/action-gh-release@v1
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Name": "Steam Search",
"Description": "Search and launch your Steam Game library",
"Author": "Garulf",
"Version": "8.1.2",
"Version": "9.0.0",
"Language": "executable",
"Website": "https://github.com/Garulf/Steam-Search",
"IcoPath": "run.exe",
Expand Down

0 comments on commit d220d54

Please sign in to comment.