Skip to content

Merge pull request #32 from taskiq-python/feature/github-flow #17

Merge pull request #32 from taskiq-python/feature/github-flow

Merge pull request #32 from taskiq-python/feature/github-flow #17

Workflow file for this run

name: Release python package
on:
push:
tags:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install deps
run: poetry install
- name: Set verison
run: poetry version "${{ github.ref_name }}"
- name: Release package
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish --build