mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-16 20:27:05 +03:00
Some checks failed
Check tox tests / Check packaging 📦 (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / Build package (push) Has been cancelled
Test on GH actions environment / test (binary, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.0) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.1) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.7.3) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / publish Python 🐍 distributions 📦 to PyPI (push) Has been cancelled
Co-authored-by: Hiroshi Miura <miurahr@linux.com>
85 lines
3.5 KiB
YAML
85 lines
3.5 KiB
YAML
# This will only run automatically when releases have been created,
|
|
# and will only upload binaries to previously-created releases.
|
|
# When run manually, it will overwrite the previous reelease binary
|
|
|
|
name: Upload release artifacts
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-standalone:
|
|
runs-on: ${{ matrix.system.os }}
|
|
strategy:
|
|
matrix:
|
|
system: [
|
|
{os: windows-latest, arch: x86, output_file: 'aqt_x86.exe', primary_artifact: '', secondary_artifact: 'aqt_x86.exe'},
|
|
{os: windows-latest, arch: x64, output_file: 'aqt_x64.exe', primary_artifact: 'aqt.exe', secondary_artifact: 'aqt_x64.exe'},
|
|
{os: macOS-13, arch: x64, output_file: 'aqt_x64', primary_artifact: 'aqt-macos', secondary_artifact: 'aqt-macos_x64'}
|
|
]
|
|
py: [3.13]
|
|
defaults:
|
|
run:
|
|
shell: ${{ matrix.system.os == 'windows-latest' && 'pwsh' || 'bash' }} {0}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 20
|
|
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.py }}
|
|
architecture: ${{ matrix.system.arch }}
|
|
- name: Build standalone binary
|
|
run: |
|
|
python -m venv venv
|
|
${{ matrix.system.os == 'windows-latest' && 'venv/Scripts/activate.ps1' || 'chmod +x venv/bin/activate && venv/bin/activate' }}
|
|
python -m pip install -U pip wheel setuptools setuptools_scm pyinstaller
|
|
python -m pip install .
|
|
python tools/build_standalone.py ${{ matrix.system.arch }}
|
|
${{ matrix.system.os == 'windows-latest' && 'deactivate' || 'chmod +x venv/bin/deactivate && venv/bin/deactivate' }}
|
|
${{ matrix.system.os == 'windows-latest' && 'Remove-Item venv -Recurse -Force' || 'rm -rf venv' }}
|
|
|
|
- name: Upload to Release
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: dist/${{ matrix.system.output_file }}
|
|
asset_name: ${{ matrix.system.primary_artifact }}
|
|
tag: ${{ github.ref }}
|
|
overwrite: true
|
|
if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
|
- name: Upload to Release for all architectures
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: dist/${{ matrix.system.output_file }}
|
|
asset_name: ${{ matrix.system.secondary_artifact }}
|
|
tag: ${{ github.ref }}
|
|
overwrite: true
|
|
if: matrix.system.secondary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
|
- name: Update continuous build
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
overwrite: true
|
|
prerelease: true
|
|
tag: Continuous
|
|
file: dist/${{ matrix.system.output_file }}
|
|
asset_name: ${{ matrix.system.primary_artifact }}
|
|
if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
|
- name: Update continuous build for all architectures
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
overwrite: true
|
|
prerelease: true
|
|
tag: Continuous
|
|
file: dist/${{ matrix.system.output_file }}
|
|
asset_name: ${{ matrix.system.secondary_artifact }}
|
|
if: matrix.system.secondary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|