Skip to content

Use garth request

Use garth request #112

Workflow file for this run

name: pyinstaller
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- uses: engineerd/[email protected]
with:
name: "upx.exe"
url: "https://github.com/upx/upx/releases/download/v4.0.2/upx-4.0.2-win64.zip"
pathInArchive: "upx-4.0.2-win64/upx.exe"
- run: pip install -r requirements.txt
- run: pip install pyinstaller garth
- run: pyinstaller standalone.spec
- uses: vimtor/action-zip@v1
with:
files: dist
dest: zoffline-nightly.zip
- uses: WebFreak001/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # automatically provided by github actions
with:
upload_url: https://uploads.github.com/repos/zoffline/zwift-offline/releases/87551648/assets{?name,label}
release_id: 87551648
asset_path: zoffline-nightly.zip
asset_name: zoffline-nightly.zip
asset_content_type: application/zip