Skip to content

add render loop to timed call #628

add render loop to timed call

add render loop to timed call #628

Workflow file for this run

name: Publish python poetry package
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
shell: bash
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN_NEW }}
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry config virtualenvs.create false
poetry build
echo "Publishing now..."
poetry publish -u "__token__" --password "$PYPI_TOKEN" || true