1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
name: Create Release
on:
push:
tags:
- 'v*'
jobs:
ci:
name: CI
uses: ./.github/workflows/ci.yml
with:
attest-package: "true"
docs:
name: Verify Docs Build
uses: beeware/.github/.github/workflows/docs-build-verify.yml@main
secrets: inherit
with:
project-name: "briefcase"
project-version: ${{ github.ref_name }}
release:
name: Create Release
needs: [ ci, docs ]
runs-on: ubuntu-latest
permissions:
contents: write
# This permission is required for trusted publishing.
id-token: write
steps:
- name: Set build variables
run: |
echo "VERSION=${GITHUB_REF_NAME#v}" | tee -a $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v5.6.0
with:
python-version: "3.x"
- name: Get packages
uses: actions/download-artifact@v5.0.0
with:
name: ${{ needs.ci.outputs.artifact-name }}
path: dist
- name: Purge non-release packages
run: rm -rf dist/x-*
- name: Install packages
run: pip install dist/*.whl
- name: Check version number
# Check that the setuptools_scm-generated version number is still the same when
# installed from a wheel with setuptools_scm not present.
run: |
set -x
test $(briefcase --version) = $VERSION
- name: Create release
uses: ncipollo/release-action@v1.18.0
with:
name: ${{ env.VERSION }}
draft: true
artifacts: dist/${{ github.event.repository.name }}*
artifactErrorsFailBuild: true
- name: Publish release to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
|