mirror of
https://github.com/PaiGramTeam/paigram-logger.git
synced 2024-11-23 16:17:55 +00:00
20 lines
401 B
YAML
20 lines
401 B
YAML
name: Publish Python package
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
release:
|
|
types: [ published ]
|
|
# Manual triggers with workflow_dispatch
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build and publish to pypi
|
|
uses: JRubics/poetry-publish@v1.16
|
|
with:
|
|
pypi_token: ${{ secrets.PYPI_API_TOKEN }} |