Skip to content

updating version to 1.1.0 #12

updating version to 1.1.0

updating version to 1.1.0 #12

Workflow file for this run

name: Publish Package
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest]
python-version: ['3.10']
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install poetry
poetry install
- name: Run Build
run: poetry build
- name: Publish Package
uses: pypa/gh-action-pypi-publish@release/v1