Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflows: harden, update tooling #206

Merged
merged 6 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,36 @@
name: Deploy documentation

on:
# Runs on version tags pushes
push:
tags:
- 'v*'
- 'v[0-9]+.[0-9]+.[0-9]+'

# Runs on manual triggers
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: '1.7.1'
poetry-version: '1.8.3'
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: "poetry"
- name: Check Poetry lock file consistency
run: poetry check --lock
Expand All @@ -53,6 +46,17 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
path: 'docs/_build'

deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
4 changes: 3 additions & 1 deletion .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ jobs:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
poetry-version: [1.7.1]
poetry-version: [1.8.3]
os: ["ubuntu-latest", "windows-latest"]
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
Expand Down
46 changes: 33 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,62 @@ name: Release Artifacts
on:
push:
tags:
- 'v*'
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
wheel-build:
name: Build and Publish Release Artifacts
runs-on: ubuntu-latest
build:
name: Build release artifacts
environment: release
permissions:
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: '1.7.1'
poetry-version: '1.8.3'
- name: Install release dependencies
run: pip install -U typer mistletoe
- name: Build packages
run: |
poetry build
shell: bash
- name: Extract changelog
run: |
python scripts/extract-changelog.py "${{ github.ref_name }}" | tee RELEASE_CHANGELOG.txt
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
path: ./dist/qiskit*
- name: Extract changelog
run: python scripts/extract-changelog.py ${{ github.ref_name }} | tee ${{ github.workspace }}-CHANGELOG.txt
path: |
./dist/qiskit*
RELEASE_CHANGELOG.txt

create_release:
name: Create GitHub release
needs: build
environment: release
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Create Github release
uses: softprops/action-gh-release@v1
with:
files: ./dist/qiskit*
body_path: ${{ github.workspace }}-CHANGELOG.txt
body_path: "RELEASE_CHANGELOG.txt"

deploy:
name: Deploy to PyPI
needs: build
environment: release
permissions:
id-token: write
runs-on: ubuntu-latest
steps:
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Loading