You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build:
needs: # If you need some previous stagesruns-on: ubuntu-latestenvironment: ${{ vars.ENVIRONMENT_STAGE }}steps:
- uses: actions/checkout@v3
- name: Install for safety again all requirementsrun: | pip install -r requirements-dev.txt pip install build
- name: Build Packagerun: python -m build
- name: Publish packageuses: pypa/gh-action-pypi-publish@release/v1with:
user: __token__password: ${{ secrets.PYPI_API_TOKEN }} # You need to set a token here
Set up the appropriate github action to publish the package automatically on pypi on new version
The text was updated successfully, but these errors were encountered: