Skip to content

update username

update username #6

Workflow file for this run

name: Publish python poetry package
on: push
# Triggers the workflow on push or pull request events but only for the "main" branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
shell: bash
env:
PYPI_DB_ROCKET: ${{ secrets.PYPI_DB_ROCKET }}
run: |
pip install -r requirements.txt
python3 -m build --no-isolation
echo "Build successfull, uploading now..."
python3 -m twine upload dist/* -u __token__ -p "$PYPI_DB_ROCKET"
echo "Upload successfull!"