Skip to content

Make the magic number a constant #12

Make the magic number a constant

Make the magic number a constant #12

Workflow file for this run

name: Build artifacts
on:
push:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Create executable
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.10'
spec: 'launcher.py'
requirements: 'requirements.txt'
options: --onefile, --name anime_rpc
clean_checkout: false
- name: Create release
id: create_release
uses: ncipollo/release-action@v1
with:
tag: latest
allowUpdates: true
artifacts: "./dist/anime_rpc.exe"
replacesArtifacts: true