37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: Release Binaries
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Python and Dependencies
|
|
run: |
|
|
if command -v apt-get >/dev/null 2>&1; then
|
|
apt-get update -y
|
|
apt-get install -y python3 python3-pip python3-venv binutils zip
|
|
fi
|
|
python3 -m pip install --upgrade pip --break-system-packages || python3 -m pip install --upgrade pip || true
|
|
pip3 install pyinstaller -r requirements.txt --break-system-packages || pip3 install pyinstaller -r requirements.txt
|
|
|
|
- name: Compile Standalone Binaries
|
|
run: |
|
|
python3 package_dist.py
|
|
|
|
- name: Publish Release
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.TAG_TOKEN || github.token }}
|
|
GITEA_SERVER_URL: ${{ github.server_url }}
|
|
GITEA_REPOSITORY: ${{ github.repository }}
|
|
GITEA_REF_NAME: ${{ github.ref_name }}
|
|
run: |
|
|
python3 upload_release.py --skip-build
|