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

switch to pure script (#8) #2

switch to pure script (#8)

switch to pure script (#8) #2

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
run: |
pip install poetry
poetry publish --build --username="__token__" --password="${{ secrets.PYPI_TOKEN }}"