DNM: reploy failed 0.46.3 artifacts #146
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: Wheel Builds | |
on: | |
push: | |
branches: ["redeploy-0.46.3"] | |
jobs: | |
build_wheels: | |
name: Build wheels | |
runs-on: ${{ matrix.os }} | |
environment: release | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.10' | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Build wheels | |
uses: pypa/[email protected] | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: ./wheelhouse/*.whl | |
name: wheels-${{ matrix.os }} | |
upload_shared_wheels: | |
name: Upload shared build wheels | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write | |
needs: ["build_wheels"] | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
pattern: 'wheels-*' | |
merge-multiple: true | |
path: deploy | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages-dir: deploy | |
sdist: | |
name: Build and publish terra sdist | |
runs-on: ${{ matrix.os }} | |
needs: ["upload_shared_wheels"] | |
environment: release | |
permissions: | |
id-token: write | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.10' | |
- name: Install deps | |
run: pip install -U twine setuptools-rust wheel build | |
- name: Build sdist | |
run: python -m build . --sdist | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
metapackage: | |
name: Build and publish terra sdist | |
runs-on: ${{ matrix.os }} | |
needs: ["sdist"] | |
environment: release | |
permissions: | |
id-token: write | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.10' | |
- name: Install deps | |
run: pip install -U twine setuptools-rust wheel build | |
- name: Build packages | |
run: | | |
set -e | |
cd qiskit_pkg | |
python -m build . | |
- name: Publish package distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages-dir: qiskit_pkg/dist |