Skip to content

Update to new version : 4.9.0.0 #21

Update to new version : 4.9.0.0

Update to new version : 4.9.0.0 #21

Workflow file for this run

name: CI
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
- uses: ncipollo/release-action@v1
with:
artifacts: ""
bodyFile: "whatsNew.md"
token: ${{ secrets.GITHUB_TOKEN }}