Release #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Build source distribution and wheels | |
if: github.repository == 'darvid/python-hyperscan' && !contains(github.event.head_commit.message, 'python-semantic-release') | |
uses: ./.github/workflows/wheels.yml | |
release: | |
name: Publish package | |
runs-on: ubuntu-22.04 | |
concurrency: release | |
needs: build | |
if: github.repository == 'darvid/python-hyperscan' && !contains(github.event.head_commit.message, 'python-semantic-release') | |
permissions: | |
id-token: write | |
pull-requests: write | |
contents: write | |
env: | |
RELEASE_PR_BRANCH: create-pull-request/patch | |
steps: | |
- name: Checkout python-hyperscan | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
fetch-depth: 0 | |
- uses: chainguard-dev/actions/setup-gitsign@main | |
- name: Check if release needed | |
id: release | |
uses: python-semantic-release/[email protected] | |
with: | |
force: "patch" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
root_options: "-v --noop" | |
# python-semantic-release displays what it would have | |
# committed if commit is true and noop is set | |
commit: "true" | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
if: github.event_name == 'workflow_dispatch' || steps.release.outputs.released == 'true' | |
- name: Prepare dist | |
if: github.event_name == 'workflow_dispatch' || steps.release.outputs.released == 'true' | |
run: | | |
mkdir dist | |
mv --backup=numbered ./wheel-*/*.whl -t dist/ | |
mv --backup=numbered ./sdist/*.tar.gz -t dist/ | |
ls -ahl dist/ | |
rm -rf dist/*~ | |
- name: Create release branch | |
if: steps.release.outputs.released == 'true' | |
run: | | |
# use the same default branch name that create-pull-request uses | |
git checkout -b ${RELEASE_PR_BRANCH} | |
git branch --set-upstream-to=${RELEASE_PR_BRANCH} | |
- name: Semantic release | |
uses: python-semantic-release/[email protected] | |
if: steps.release.outputs.released == 'true' | |
with: | |
force: "patch" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
root_options: "-v" | |
- name: Create PR | |
if: steps.release.outputs.released == 'true' | |
run: | | |
gh pr create -B main -H $RELEASE_PR_BRANCH \ | |
--title "$PR_TITLE" \ | |
--body '🤖' | |
env: | |
PR_TITLE: "Release ${{ steps.release.outputs.version }}" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |