Skip to content

fix name

fix name #7

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
integration-test:
needs: [unit_test]
uses: ./.github/workflows/integration_test.yml
build:
runs-on: ubuntu-latest
needs: [unit_test, integration-test]
steps:
- uses: actions/checkout@v4
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v2.0
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}