Skip to content

Commit

Permalink
hot-fix: update gh action to publish on PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
helen-m-lin committed Nov 19, 2024
1 parent 46ad2d7 commit ae95bad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
git tag "v${{ env.tag }}"
- name: Push git tag
run: git push origin "v${{ env.tag }}"
- name: Set up Python 3.8
uses: actions/setup-python@v2
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: '3.10'
- name: Install dependencies
run: |
pip install --upgrade setuptools wheel twine build
Expand All @@ -35,4 +35,5 @@ jobs:
- name: Publish on PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
password: ${{ secrets.AIND_PYPI_TOKEN }}

0 comments on commit ae95bad

Please sign in to comment.