Update the release.yml file
This now more closely follows the guidance provided about this.
This commit is contained in:
parent
e1a55d58fe
commit
e157950f17
|
@ -2,47 +2,97 @@
|
||||||
# and then try to upload to TestPyPI. The second step seems to be consistently
|
# and then try to upload to TestPyPI. The second step seems to be consistently
|
||||||
# failing. :)
|
# failing. :)
|
||||||
|
|
||||||
name: Release
|
name: Build and release
|
||||||
on:
|
on: [push]
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "*"
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
id-token: write
|
|
||||||
contents: write
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v4
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pip install build
|
|
||||||
|
|
||||||
- name: Generate final distribution
|
|
||||||
run: python -m build
|
|
||||||
|
|
||||||
- name: Upload source distribution as an action artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: sdist
|
python-version: "3.x"
|
||||||
path: dist/furo-*.tar.gz
|
|
||||||
- name: Upload wheel distribution as an action artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: wheel
|
|
||||||
path: dist/furo-*-py3-none-any.whl
|
|
||||||
|
|
||||||
- name: Make a GitHub Release
|
- run: pip install build
|
||||||
uses: softprops/action-gh-release@v2
|
- run: python -m build
|
||||||
with:
|
|
||||||
files: dist/*
|
|
||||||
|
|
||||||
- name: Upload to TestPyPI
|
- uses: actions/upload-artifact@v4
|
||||||
uses: pypa/gh-action-pypi-publish@release/v1
|
|
||||||
with:
|
with:
|
||||||
repository_url: https://test.pypi.org/legacy/
|
name: distributions
|
||||||
verbose: true
|
path: dist/
|
||||||
|
|
||||||
|
publish-pypi:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
needs: [build]
|
||||||
|
|
||||||
|
environment:
|
||||||
|
name: release
|
||||||
|
permissions:
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: python-package-distributions
|
||||||
|
path: dist/
|
||||||
|
|
||||||
|
- uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
|
|
||||||
|
publish-testpypi:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
needs: [build]
|
||||||
|
|
||||||
|
environment:
|
||||||
|
name: release
|
||||||
|
permissions:
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: python-package-distributions
|
||||||
|
path: dist/
|
||||||
|
|
||||||
|
- uses: pypa/gh-action-pypi-publish@release/v1
|
||||||
|
with:
|
||||||
|
repository-url: https://test.pypi.org/legacy/
|
||||||
|
|
||||||
|
github-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
needs: [publish-to-testpypi]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: python-package-distributions
|
||||||
|
path: dist/
|
||||||
|
|
||||||
|
- uses: sigstore/gh-action-sigstore-python@v1.2.3
|
||||||
|
with:
|
||||||
|
inputs: ./dist/*.tar.gz ./dist/*.whl
|
||||||
|
|
||||||
|
- name: Create a GitHub release
|
||||||
|
run: >-
|
||||||
|
gh release create --repo '${{ github.repository }}'
|
||||||
|
'${{ github.ref_name }}'
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
|
||||||
|
- name: Upload signed release files to GitHub release
|
||||||
|
run: >-
|
||||||
|
gh release upload --repo '${{ github.repository }}'
|
||||||
|
'${{ github.ref_name }}'
|
||||||
|
dist/**
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
|
Loading…
Reference in New Issue