Skip to content

chore(dev): switch formatting to ruff format #87

chore(dev): switch formatting to ruff format

chore(dev): switch formatting to ruff format #87

Workflow file for this run

name: release
on:
push:
branches:
- main
jobs:
release_please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release_please
with:
release-type: python
package-name: hashpipe
pull-request-title-pattern: "chore: release${component} ${version}"
outputs:
release_created: ${{ steps.release_please.outputs.release_created }}
sha: ${{ steps.release_please.outputs.sha }}
pypi_upload:
runs-on: ubuntu-latest
needs: release_please
if: needs.release_please.outputs.release_created
steps:
- uses: actions/checkout@v4
with:
ref: ${{ needs.release_please.outputs.sha }}
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Create release assets
run: |
set -euxo pipefail
python3 -m pip install -U setuptools wheel
python3 setup.py sdist bdist_wheel
ls dist
- uses: pypa/gh-action-pypi-publish@v1.4.2
with:
password: ${{ secrets.PYPI_API_TOKEN }}