Skip to content

Instantly share code, notes, and snippets.

@etchegom
Created December 3, 2022 09:50
Show Gist options
  • Save etchegom/453606ede2b11257037402b56aa73ea3 to your computer and use it in GitHub Desktop.
Save etchegom/453606ede2b11257037402b56aa73ea3 to your computer and use it in GitHub Desktop.
name: Release
on:
push:
tags:
- '*.*.*'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.2.2
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Build project
run: poetry build
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
- name: Publish to PyPI
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment