Skip to content

Commit

Permalink
- change release job to reference pmfx.py remove traces of build_pmfx
Browse files Browse the repository at this point in the history
  • Loading branch information
polymonster committed Dec 29, 2022
1 parent 6e9c870 commit 34135aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: pyinstaller
run: "pip install PyInstaller"
- name: build
run: py -3 -c "import build_pmfx; build_pmfx.build_executable()"
run: py -3 -c "import pmfx; pmfx.build_executable()"
- name: upload
id: upload-release-asset
uses: actions/upload-release-asset@v1
Expand All @@ -51,7 +51,7 @@ jobs:
- name: pyinstaller
run: "pip3 install PyInstaller"
- name: build
run: python3 -c "import build_pmfx; build_pmfx.build_executable()"
run: python3 -c "import pmfx; pmfx.build_executable()"
- name: upload
id: upload-release-asset
uses: actions/upload-release-asset@v1
Expand All @@ -72,7 +72,7 @@ jobs:
- name: pyinstaller
run: "pip3 install PyInstaller"
- name: build
run: python3 -c "import build_pmfx; build_pmfx.build_executable()"
run: python3 -c "import pmfx; pmfx.build_executable()"
- name: upload
id: upload-release-asset
uses: actions/upload-release-asset@v1
Expand Down
2 changes: 1 addition & 1 deletion pmfx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3030,7 +3030,7 @@ def build_executable():

# requires pyinstaller
p = subprocess.Popen(
"{} build_pmfx.py -i NONE --onefile --distpath dist/{} --workpath dist/build/{}".format(pyinstaller[platform], platform, platform), shell=True)
"{} pmfx.py -i NONE --onefile --distpath dist/{} --workpath dist/build/{}".format(pyinstaller[platform], platform, platform), shell=True)
p.wait()

# copy relevant files
Expand Down

0 comments on commit 34135aa

Please sign in to comment.