Skip to content

Commit

Permalink
yet another annoyance
Browse files Browse the repository at this point in the history
  • Loading branch information
Egezenn committed Dec 15, 2024
1 parent 9473909 commit 2b8872c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,16 @@ jobs:
pip install -r requirements.txt
- name: Build executable with PyInstaller
run: pyinstaller --name=ytmasc --icon=".\assets\icon.ico" --onefile .\ytmasc\__main__.py
run: |
pyinstaller --name=ytmasc --icon=".\assets\icon.ico" --onefile .\ytmasc\__main__.py
move .\dist\ytmasc.exe .
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.RELEASE_NAME }}
prerelease: true
body: Alpha stage release
files: .\dist\ytmasc.exe
files: ytmasc.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2b8872c

Please sign in to comment.