This repository was archived by the owner on Mar 25, 2025. It is now read-only.
build(deps): bump cuenca-validations from 2.0.4 to 2.1.0 (#355) #937
This file contains hidden or 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 | |
| on: [push, pull_request] | |
| jobs: | |
| publish-pypi: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.8 | |
| uses: actions/[email protected] | |
| with: | |
| python-version: 3.8 | |
| - name: Install dependencies | |
| run: pip install -qU setuptools wheel twine | |
| - name: Generating distribution archives | |
| run: python setup.py sdist bdist_wheel | |
| - name: Publish distribution 📦 to PyPI | |
| if: startsWith(github.event.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@master | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.pypi_password }} |