mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 04:34:37 +03:00
* chore(ci): bump target qt versions Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): use install-qt subcommand - Drop backward compat check Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): wip Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): wip Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): fix qmake query checks Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): fix mingw targets Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): add target 6.8.0 and drop use of python3.9 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): add expectation for Qt 6.8 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): drop tox test from install-qt check Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): fix expectation for windows/android qt 6.6 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): wip Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): wip Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): add taget Qt 6.7.3 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): bump actions/setup-python@v5 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): azure-pipelines: drop test target Qt5 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): azure-pipelines: update triggers Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): azure-pipelines: disable Linux_ARM64 Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): azure-pipelines: replace list with list-qt Signed-off-by: Hiroshi Miura <miurahr@linux.com> * chore(ci): azure-pipelines: no build check if list-qt Signed-off-by: Hiroshi Miura <miurahr@linux.com> --------- Signed-off-by: Hiroshi Miura <miurahr@linux.com>
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
name: Publish Python 🐍 distributions 📦 to PyPI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/*
|
|
- rel-*
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
build-n-publish:
|
|
name: Build and publish Python 🐍 distributions 📦 to PyPI
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 50
|
|
- name: Fetch release tag
|
|
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
|
- name: Set up Python 3.12🐍
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
- name: Install build and twine
|
|
run: python -m pip install build twine --user
|
|
- name: Build release assets
|
|
run: python -m build ./
|
|
- name: twine check
|
|
run: python -m twine check dist/*
|
|
- name: Publish distribution 📦 to Test PyPI when releases branch
|
|
if: ${{ startsWith(github.event.ref, 'refs/heads/releases') }}
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
password: ${{ secrets.testpypi_password }}
|
|
repository_url: https://test.pypi.org/legacy/
|
|
- name: Publish distribution 📦 to PyPI
|
|
if: ${{ startsWith(github.event.ref, 'refs/tags') }}
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
password: ${{ secrets.pypi_password }}
|