Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Automated Package Building and Deployment #179

Merged
merged 11 commits into from
Apr 26, 2024
56 changes: 56 additions & 0 deletions .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
name: Build and upload package

on:
push:
branches: [main]
tags: ["*"]
effigies marked this conversation as resolved.
Show resolved Hide resolved
pull_request:
branches: [ main ]
release:
types:
- published
workflow_dispatch:

permissions:
contents: read
id-token: write

jobs:
build-package:
name: Build & verify package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2

auto-release-test-pypi:
runs-on: ubuntu-latest
needs: [build-package]
# if: github.event_name == 'push' && github.ref == 'refs/heads/main'
effigies marked this conversation as resolved.
Show resolved Hide resolved
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'nipreps/eddymotion' }}

steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v4
with:
name: Packages
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

auto-release-pypi:
runs-on: ubuntu-latest
environment: "Release"
needs: [build-package]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v4
with:
name: Packages
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1