fix: project urls #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Release and PyPI Upload | |
# on: | |
# push: | |
# tags: | |
# - '*' | |
# jobs: | |
# release: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# - name: Setup Node.js | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20 | |
# - name: Semantic Release | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
# run: npx semantic-release | |
# upload-to-pypi: | |
# needs: release | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# - name: Setup Python | |
# uses: actions/setup-python@v2 | |
# with: | |
# python-version: 3.8 | |
# - name: Install dependencies | |
# run: | | |
# python -m pip install --upgrade pip | |
# python -m pip install twine | |
# - name: Build and upload to PyPI | |
# run: | | |
# python setup.py sdist | |
# twine upload dist/* | |
# env: | |
# TWINE_USERNAME: __token__ | |
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} |