Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Sep 10, 2024
1 parent 763fbdb commit 635b481
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,6 @@ jobs:
./output/stimcirq/*.tar.gz
./output/sinter/*.tar.gz
./output/stim/*
merge:
runs-on: ubuntu-latest
needs: upload
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: dist
pattern: dist-*
check_sdist_installs:
runs-on: ubuntu-latest
steps:
Expand All @@ -189,8 +180,17 @@ jobs:
- run: python -m pip install pybind11~=2.11.1 cibuildwheel~=2.16.2 setuptools wheel
- run: python setup.py sdist
- run: pip install dist/*.tar.gz
upload_dev_release_to_pypi:
merge_upload_artifacts:
needs: ["build_dist"]
runs-on: ubuntu-latest
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: dist
pattern: dist-*
upload_dev_release_to_pypi:
needs: ["merge_upload_artifacts"]
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 635b481

Please sign in to comment.