Skip to content

Commit

Permalink
Update deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
adnankarol authored and adnankarol committed Aug 1, 2024
1 parent a6a1e47 commit ab5d947
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3 # Latest version
uses: actions/checkout@v3 # Latest stable version

- name: Set up Python
uses: actions/setup-python@v4 # Latest version
uses: actions/setup-python@v4 # Latest stable version
with:
python-version: '3.10' # Adjust to your preferred Python version
python-version: '3.10' # Specify the Python version you need

- name: Install dependencies
run: |
Expand All @@ -29,6 +29,6 @@ jobs:
- name: Publish to PyPI
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} # Ensure your PyPI token is set in GitHub Secrets
run: |
twine upload dist/*

0 comments on commit ab5d947

Please sign in to comment.