Skip to content

Commit

Permalink
Deploy gpu 0.13 (#1968)
Browse files Browse the repository at this point in the history
* deploy GPU builds only

* temporary use twine to upload from non-main branch
  • Loading branch information
doichanj authored Oct 27, 2023
1 parent 8ef4a07 commit a84427a
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,13 @@ jobs:
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: wheelhouse
- name: Publish Wheels
env:
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_USERNAME: qiskit
run : |
pip install -U twine
twine upload wheelhouse/*
gpu-build-cuda12:
name: Build qiskit-aer-gpu-cu12 wheels
strategy:
Expand Down Expand Up @@ -85,7 +88,10 @@ jobs:
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: wheelhouse
- name: Publish Wheels
env:
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_USERNAME: qiskit
run : |
pip install -U twine
twine upload wheelhouse/*

0 comments on commit a84427a

Please sign in to comment.