Skip to content

Commit

Permalink
Merge branch 'main' into branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishi-source authored Oct 22, 2024
2 parents 3872dd5 + 9910bef commit b7108f6
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/pypi-release-aboutcode-hashid.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build aboutcode.hashid Python distributions and publish on PyPI

on:
workflow_dispatch:
push:
tags:
- "aboutcode.hashid/*"

jobs:
build-and-publish:
name: Build and publish library to PyPI
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11

- name: Install flot
run: python -m pip install flot --user

- name: Build binary wheel and source tarball
run: python -m flot --pyproject pyproject-aboutcode.hashid.toml --sdist --wheel --output-dir dist/

- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN_ABOUTCODE_HASHID }}

- name: Upload built archives
uses: actions/upload-artifact@v4
with:
name: pypi_archives
path: dist/*

0 comments on commit b7108f6

Please sign in to comment.