Skip to content

Commit

Permalink
das-node-29: publish package
Browse files Browse the repository at this point in the history
  • Loading branch information
levisingularity committed Oct 10, 2024
1 parent 715615d commit 79dfba6
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,14 @@ jobs:
- name: Build (Bazel)
run: ./scripts/build.sh

- name: Build and publish pypi
run: |
./scripts/container_tty.sh "pip install . && \
pip install twine && \
twine upload dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} --non-interactive"
- name: Build (Docker Image Wheel)
run: ./scripts/docker_image_wheel.sh

- name: Build (Wheel)
run: ./scripts/wheel.sh

- name: Install twine
run: pip install twine

- name: Publish Package
run: twine upload wheelhouse/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} --non-interactive

0 comments on commit 79dfba6

Please sign in to comment.