Skip to content
Merged
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
46 changes: 33 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,43 @@ jobs:
run: poetry run pytest --no-cov -vvvvv --codspeed tests/benchmarks
mode: instrumentation

release:
# Dry run on PRs and non-master pushes. No environment, no publish
# permissions, no OIDC, so PR runs carry no release blast radius.
release-dry-run:
needs:
- test
- lint
if: ${{ github.repository_owner }} == "python-zeroconf"
if: github.ref_name != 'master' && github.repository_owner == 'python-zeroconf'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
with:
fetch-depth: 0
ref: ${{ github.ref }}

- name: Create local branch name
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
run: git switch -C "$BRANCH"

- name: Test release
uses: python-semantic-release/python-semantic-release@350c48fcb3ffcdfd2e0a235206bc2ecea6b69df0 # v10.5.3
with:
no_operation_mode: true

# Real release, only on master. The release environment and write/OIDC
# permissions are scoped to this job so they never apply to PR runs.
release:
needs:
- test
- lint
if: github.ref_name == 'master' && github.repository_owner == 'python-zeroconf'
runs-on: ubuntu-latest
environment: release
concurrency:
group: release-${{ github.head_ref || github.ref }}
group: release-${{ github.ref }}
cancel-in-progress: false
permissions:
id-token: write
Expand All @@ -175,20 +202,13 @@ jobs:
ref: ${{ github.ref }}

- name: Create local branch name
run: git switch -C ${{ github.head_ref || github.ref_name }}

# Do a dry run of PSR
- name: Test release
uses: python-semantic-release/python-semantic-release@350c48fcb3ffcdfd2e0a235206bc2ecea6b69df0 # v10.5.3
if: github.ref_name != 'master'
with:
no_operation_mode: true
env:
BRANCH: ${{ github.ref_name }}
run: git switch -C "$BRANCH"

# On main branch: actual PSR + upload to PyPI & GitHub
- name: Release
uses: python-semantic-release/python-semantic-release@350c48fcb3ffcdfd2e0a235206bc2ecea6b69df0 # v10.5.3
id: release
if: github.ref_name == 'master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
Loading