Skip to content

chore: bump version 3.2.0 → 3.2.1 #109

chore: bump version 3.2.0 → 3.2.1

chore: bump version 3.2.0 → 3.2.1 #109

Workflow file for this run

name: Upload Python Package
on:
push:
tags:
- v*
jobs:
deploy:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/project/remoulade/
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build twine
- name: Build package
run: |
python -m build
python -m twine check --strict dist/*
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1