PyPI release π π¦ #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyPI release π π¦ | |
env: | |
PYTHON_VERSION: '3.12' | |
TZ: Europe/Zurich | |
on: | |
push: | |
tags: | |
- 'v*' | |
- '!v0.*' | |
- '!v1.*' | |
- '!v2.*' | |
- '!v3.0' | |
- '!v3.0.*' | |
- '!v3.1' | |
- '!v3.1.*' | |
- '!v3.2' | |
- '!v3.2.*' | |
- '!*\+docs' | |
workflow_dispatch: | |
inputs: | |
plugin-name: | |
description: Plugin name | |
required: true | |
type: choice | |
options: | |
- '' # this is invalid for a `required` dropdown so we force a choice instead of preselecting the first one | |
- citadel | |
- cloud_captchas | |
- livesync | |
- livesync_debug | |
- owncloud | |
- payment_manual | |
- payment_paypal | |
- payment_sixpay | |
- piwik | |
- previewer_code | |
- previewer_jupyter | |
- prometheus | |
- storage_s3 | |
- themes_legacy | |
- ursh | |
- vc_dummy | |
- vc_zoom | |
permissions: | |
contents: read | |
jobs: | |
check-version: | |
name: Check version | |
runs-on: ubuntu-22.04 | |
if: github.event_name != 'workflow_dispatch' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Set up Python π | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Check version π | |
run: python .github/utils/check_version.py "${GITHUB_REF#refs/tags/v}" | |
build: | |
name: Build plugins π | |
needs: check-version | |
if: ${{ !cancelled() && (needs.check-version.result == 'success' || needs.check-version.result == 'skipped') }} | |
uses: ThiefMaster/indico-gh-actions/.github/workflows/build-plugins.yml@master | |
with: | |
scripts-repo: ThiefMaster/indico-gh-actions | |
directory: public | |
add-version-suffix: false | |
plugin: ${{ github.event_name == 'workflow_dispatch' && inputs.plugin-name }} | |
test-install: | |
name: Test installing plugins | |
needs: build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Download build artifacts π¦ | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
pattern: plugin-wheel-* | |
path: wheels | |
- name: Set up Python π | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Indico π§ | |
run: | | |
sudo apt-get install libpq-dev | |
pip install setuptools wheel | |
pip install indico | |
- name: Install plugins 𧩠| |
run: pip install wheels/*.whl | |
- name: List plugins 𧩠| |
run: indico setup list-plugins | |
create-github-release: | |
name: Create GitHub release π | |
# Upload wheel to a GitHub release. It remains available as a build artifact for a while as well. | |
needs: | |
- build | |
- test-install | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- name: Download build artifacts π¦ | |
uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
pattern: plugin-wheel-* | |
path: dist | |
- name: Create draft release π | |
run: >- | |
gh release create | |
--draft | |
--repo ${{ github.repository }} | |
--title ${{ github.ref_name }} | |
${{ github.ref_name }} | |
dist/* | |
env: | |
GH_TOKEN: ${{ github.token }} | |
publish-pypi: | |
name: Publish π | |
needs: | |
- build | |
- test-install | |
- create-github-release | |
# Wait for approval before attempting to upload to PyPI. This allows reviewing the | |
# files in the draft release. | |
environment: publish | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
pattern: plugin-wheel-* | |
path: dist | |
# Try uploading to Test PyPI first, in case something fails. | |
- name: Publish to Test PyPI π§ͺ | |
uses: pypa/[email protected] | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
packages-dir: dist/ | |
skip-existing: true | |
- name: Publish to PyPI π | |
uses: pypa/[email protected] | |
with: | |
packages-dir: dist/ | |
skip-existing: true | |
- name: Publish GitHub release π | |
run: >- | |
gh release edit | |
--draft=false | |
--repo ${{ github.repository }} | |
${{ github.ref_name }} | |
env: | |
GH_TOKEN: ${{ github.token }} |