Skip to content

Commit

Permalink
CI Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
LTurret committed Jul 7, 2023
1 parent 2495ecc commit 1b253a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,3 @@ jobs:
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- name: Compile to executable
run: |
pip install pyinstaller
pyinstaller -F himePicParser.py -i "icon.ico"
mv .\dist\himePicParser.exe .\himePicParser-v1.0.0-windows.exe
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
run: |
pip install pyinstaller
pyinstaller -F himePicParser.py -i "icon.ico"
mv .\dist\himePicParser.exe .\himePicParser-v1.0.0-windows.exe
mv .\dist\himePicParser.exe .\himePicParser-v1.1.0-windows.exe
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref }}
name: himePicParser-v1.0.0-windows
name: himePicParser-v1.1.0-windows
draft: true
prerelease: false
files: himePicParser-v1.0.0-windows.exe
files: himePicParser-v1.1.0-windows.exe

0 comments on commit 1b253a4

Please sign in to comment.