asyncpg v0.29.0 #54
Workflow file for this run
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: Release | |
on: | |
pull_request: | |
branches: | |
- "master" | |
- "ci" | |
- "[0-9]+.[0-9x]+*" | |
paths: | |
- "asyncpg/_version.py" | |
jobs: | |
validate-release-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Validate release PR | |
uses: edgedb/action-release/validate-pr@master | |
id: checkver | |
with: | |
require_team: Release Managers | |
require_approval: no | |
github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }} | |
version_file: asyncpg/_version.py | |
version_line_pattern: | | |
__version__\s*=\s*(?:['"])([[:PEP440:]])(?:['"]) | |
- name: Stop if not approved | |
if: steps.checkver.outputs.approved != 'true' | |
run: | | |
echo ::error::PR is not approved yet. | |
exit 1 | |
- name: Store release version for later use | |
env: | |
VERSION: ${{ steps.checkver.outputs.version }} | |
run: | | |
mkdir -p dist/ | |
echo "${VERSION}" > dist/VERSION | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist/ | |
build-sdist: | |
needs: validate-release-request | |
runs-on: ubuntu-latest | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
submodules: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Build source distribution | |
run: | | |
pip install -U setuptools wheel pip | |
python setup.py sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist/*.tar.* | |
build-wheels-matrix: | |
needs: validate-release-request | |
runs-on: ubuntu-latest | |
outputs: | |
include: ${{ steps.set-matrix.outputs.include }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- run: pip install cibuildwheel==2.16.2 | |
- id: set-matrix | |
run: | | |
MATRIX_INCLUDE=$( | |
{ | |
cibuildwheel --print-build-identifiers --platform linux --arch x86_64,aarch64 | grep cp | jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \ | |
&& cibuildwheel --print-build-identifiers --platform macos --arch x86_64,arm64 | grep cp | jq -nRc '{"only": inputs, "os": "macos-latest"}' \ | |
&& cibuildwheel --print-build-identifiers --platform windows --arch x86,AMD64 | grep cp | jq -nRc '{"only": inputs, "os": "windows-latest"}' | |
} | jq -sc | |
) | |
echo "include=$MATRIX_INCLUDE" >> $GITHUB_OUTPUT | |
build-wheels: | |
needs: build-wheels-matrix | |
runs-on: ${{ matrix.os }} | |
name: Build ${{ matrix.only }} | |
strategy: | |
matrix: | |
include: ${{ fromJson(needs.build-wheels-matrix.outputs.include) }} | |
defaults: | |
run: | |
shell: bash | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
submodules: true | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v2 | |
- uses: pypa/cibuildwheel@fff9ec32ed25a9c576750c91e06b410ed0c15db7 # v2.16.2 | |
with: | |
only: ${{ matrix.only }} | |
env: | |
CIBW_BUILD_VERBOSITY: 1 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: wheelhouse/*.whl | |
publish-docs: | |
needs: [build-sdist, build-wheels] | |
runs-on: ubuntu-latest | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: 1 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
submodules: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Build docs | |
run: | | |
pip install -e .[docs] | |
make htmldocs | |
- name: Checkout gh-pages | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
ref: gh-pages | |
path: docs/gh-pages | |
- name: Sync docs | |
run: | | |
rsync -a docs/_build/html/ docs/gh-pages/current/ | |
- name: Commit and push docs | |
uses: magicstack/gha-commit-and-push@master | |
with: | |
target_branch: gh-pages | |
workdir: docs/gh-pages | |
commit_message: Automatic documentation update | |
github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }} | |
ssh_key: ${{ secrets.RELEASE_BOT_SSH_KEY }} | |
gpg_key: ${{ secrets.RELEASE_BOT_GPG_KEY }} | |
gpg_key_id: "5C468778062D87BF!" | |
publish: | |
needs: [build-sdist, build-wheels, publish-docs] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
submodules: false | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: dist/ | |
- name: Extract Release Version | |
id: relver | |
run: | | |
set -e | |
echo "version=$(cat dist/VERSION)" >> $GITHUB_OUTPUT | |
rm dist/VERSION | |
- name: Merge and tag the PR | |
uses: edgedb/action-release/merge@master | |
with: | |
github_token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }} | |
ssh_key: ${{ secrets.RELEASE_BOT_SSH_KEY }} | |
gpg_key: ${{ secrets.RELEASE_BOT_GPG_KEY }} | |
gpg_key_id: "5C468778062D87BF!" | |
tag_name: v${{ steps.relver.outputs.version }} | |
- name: Publish Github Release | |
uses: elprans/gh-action-create-release@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v${{ steps.relver.outputs.version }} | |
release_name: v${{ steps.relver.outputs.version }} | |
target: ${{ github.event.pull_request.base.ref }} | |
body: ${{ github.event.pull_request.body }} | |
- run: | | |
ls -al dist/ | |
- name: Upload to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
# password: ${{ secrets.TEST_PYPI_TOKEN }} | |
# repository_url: https://test.pypi.org/legacy/ |