Skip to content

Commit fba3de7

Browse files
committed
Fix executable command (#503)
1 parent 3f25c45 commit fba3de7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/package_build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- name: Create executable
2525
run: |
2626
pip install ./dist/*.whl
27-
pyinstaller --onefile --name ecodevserver eco-ext-dev
28-
pyinstaller --onefile --name ecoserver eco-ext
27+
pyinstaller --onefile --name ecodevserver $(which eco-ext-dev)
28+
pyinstaller --onefile --name ecoserver $(which eco-ext)
2929
3030
- name: Create GitHub Release
3131
uses: softprops/action-gh-release@v1
@@ -36,7 +36,7 @@ jobs:
3636
dist/*.whl
3737
dist/ecodevserver*
3838
dist/ecoserver*
39-
draft: false
39+
draft: true
4040
prerelease: false
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)