Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Update cd.yaml (#7)

Update cd.yaml (#7) #1

Workflow file for this run

name: CD Workflow
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
workflow_dispatch:
jobs:
main:
name: Build & Publish core
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Build & Publish to PyPi
uses: JRubics/[email protected]
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
poetry_publish_options: "--build"