Skip to content

Commit

Permalink
Merge pull request #1037 from mtreinish/backport-sdist-job
Browse files Browse the repository at this point in the history
Add missing sdist release job (#998)
  • Loading branch information
chriseclectic authored Nov 12, 2020
2 parents aee5121 + 6a8769e commit c2acab3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,29 @@ jobs:
run : |
pip install -U twine
twine upload wheelhouse/*
sdist:
name: Publish qiskit-aer sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.8'
- name: Install Deps
run: pip install -U twine wheel
- name: Build Artifacts
run: |
python setup.py sdist
shell: bash
- uses: actions/upload-artifact@v2
with:
path: ./dist/qiskit*
- name: Publish to PyPi
env:
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_USERNAME: qiskit
run: twine upload dist/qiskit*
gpu-build:
name: Build qiskit-aer-gpu wheels
runs-on: ubuntu-latest
Expand Down

0 comments on commit c2acab3

Please sign in to comment.