Skip to content

Commit

Permalink
ci: Add PyPI publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiefMaster committed Mar 30, 2024
1 parent 1e6bfd5 commit b61fdd3
Show file tree
Hide file tree
Showing 2 changed files with 162 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/utils/check_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This file is part of the Indico plugins.
# Copyright (C) 2002 - 2024 CERN
#
# The Indico plugins are free software; you can redistribute
# them and/or modify them under the terms of the MIT License;
# see the LICENSE file for more details.

import sys
from configparser import ConfigParser


cp = ConfigParser()
cp.read('_meta/setup.cfg')
version = cp['metadata']['version']
tag_version = sys.argv[1]

if tag_version != version:
print(f'::error::Tag version {tag_version} does not match package version {version}')
sys.exit(1)
143 changes: 143 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
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'

permissions:
contents: read

jobs:
check-version:
name: Check version
runs-on: ubuntu-22.04
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
uses: indico/indico-gh-actions/.github/workflows/build-plugins.yml@master
with:
directory: public
add-version-suffix: false

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 }}
cache: pip
cache-dependency-path: indico/requirements*.txt

- name: Install Indico πŸ”§
working-directory: indico
run: |
sudo apt-get install libpq-dev
pip install setuptools babel
pip install "indico[dev] @ git+https://github.com/${INDICO_REPO}.git@${INDICO_BRANCH}"
- 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 }}

0 comments on commit b61fdd3

Please sign in to comment.