Skip to content

bump version 0.1.5 -> 0.1.6 #14

bump version 0.1.5 -> 0.1.6

bump version 0.1.5 -> 0.1.6 #14

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Upload edgehog to pypi
on:
push:
tags:
- v*
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install poetry
uses: Gr1N/setup-poetry@v9
- name: Install dependencies and package
run: |
poetry lock
poetry show --tree
poetry install
- name: Build package
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
run: poetry publish --build