Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/build-and-deploy-on-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: PyPi Build and Deploy 🐍📦

on:
release:
types: [published]
# use this for testing
push:
branches:
- main
- tweak_gha

jobs:
build-n-publish:
name: Build and publish pyfive on PyPi
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/pyfive/
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.13
uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install pep517
run: >-
python -m
pip install
pep517
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
pep517.build
--source
--binary
--out-dir dist/
.
# - name: Publish distribution to Test PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# repository-url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
6 changes: 4 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ name: Pyfive Test

on:
push:
branches: [ master ]
branches:
- main
pull_request:
branches: [ master ]
branches:
- main
schedule:
- cron: '0 0 * * *' # nightly

Expand Down
Loading