From 0ec5754e906a94c90a16e74852dcf815eaf0efae Mon Sep 17 00:00:00 2001 From: kevin-tian Date: Fri, 13 Oct 2023 13:42:56 -0400 Subject: [PATCH] Update deploy yml --- .github/workflows/deploy.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1acdafa99..f79b2ba33 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,9 @@ on: jobs: Deploy: runs-on: ubuntu-latest + environment: release + permissions: + id-token: write strategy: matrix: python-version: [3.9] @@ -28,12 +31,12 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Install deps + run: pip install -U pip setuptools build + - name: Build sdist + run: python3 -m build + - uses: actions/upload-artifact@v3 + with: + path: ./dist/* - name: Deploy to Pypi - env: - TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} - TWINE_USERNAME: qiskit - run : | - pip install -U twine pip setuptools virtualenv wheel - python3 setup.py sdist bdist_wheel - twine upload dist/qiskit* - shell: bash \ No newline at end of file + uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file