Update requirements.txt #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pyinstaller | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- uses: engineerd/[email protected] | |
with: | |
name: "upx.exe" | |
url: "https://github.com/upx/upx/releases/download/v4.2.1/upx-4.2.1-win64.zip" | |
pathInArchive: "upx-4.2.1-win64/upx.exe" | |
- run: pip install -r requirements.txt | |
- run: pyinstaller bot_editor.spec | |
- run: pyinstaller get_profile.spec | |
- run: pyinstaller strava_auth.spec | |
- run: pyinstaller upload_activity.spec | |
- uses: vimtor/action-zip@v1 | |
with: | |
files: dist configure_client.bat resources | |
dest: zoffline-helper.zip | |
- uses: WebFreak001/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided by github actions | |
with: | |
upload_url: https://uploads.github.com/repos/oldnapalm/zoffline-helper/releases/93612294/assets{?name,label} | |
release_id: 93612294 | |
asset_path: zoffline-helper.zip | |
asset_name: zoffline-helper.zip | |
asset_content_type: application/zip |