Skip to content

fix path

fix path #28

Workflow file for this run

name: Release
on:
push:
branches:
- task/build-process
# branches-ignore:
# - "!main"
tags:
- "v?[0-9]+.[0-9]+.[0-9]+*"
jobs:
# unit_test:
# uses: ./.github/workflows/unit_test.yml
docs:
uses: ./.github/workflows/docs.yml
# integration_test:
# needs: [unit_test]
# uses: ./.github/workflows/integration_test.yml
# secrets: inherit
publish_pypi:
runs-on: ubuntu-latest
#needs: [unit_test, integration_test]
needs: [docs]
steps:
- uses: actions/checkout@v4
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v2.0
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}