Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Jan 25, 2024
2 parents 9b25fd6 + 46554a9 commit 1fe4091
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
pip install pyinstaller
- name: Package app with pyinstaller
run: |
python -c "with open('dooit.py', 'w') as f: f.write('from dooit.__init__ import main\nmain()\n')"
python -c "with open('dooit.py', 'w') as f: f.write('from dooit.__main__ import main\nmain()\n')"
pyinstaller --clean -F dooit.py --add-data=dooit/utils/default_config.py:dooit/utils/
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
pip install pyinstaller
- name: Package app with pyinstaller
run: |
python -c "with open('dooit.py', 'w') as f: f.write('from dooit.__init__ import main\nmain()\n')"
python -c "with open('dooit.py', 'w') as f: f.write('from dooit.__main__ import main\nmain()\n')"
pyinstaller --clean -F dooit.py --add-data=dooit/utils/default_config.py:dooit/utils/
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
pip install pyinstaller
- name: Package app with pyinstaller
run: |
python -c "with open('dooit.py', 'w') as f: f.write('from dooit.__init__ import main\nmain()\n')"
python -c "with open('dooit.py', 'w') as f: f.write('from dooit.__main__ import main\nmain()\n')"
pyinstaller --clean -F dooit.py --add-data=dooit/utils/default_config.py:dooit/utils/
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
Expand Down

0 comments on commit 1fe4091

Please sign in to comment.