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
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Release

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
release:
types: [published]
workflow_dispatch:
Comment on lines 3 to 6

Copilot AI Mar 22, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing the trigger from push to release means github.event_name will be release (or workflow_dispatch). The workflow still has a release job gated by if: github.event_name == 'push', which will now always skip that job and prevent publishing/uploading. Update/remove that if so it matches the new triggers.

Copilot uses AI. Check for mistakes.

jobs:
Expand Down
Loading