let docker release workflow trigger github release directly

This commit is contained in:
github-actions[bot]
2025-10-29 15:00:09 +11:00
parent 15474845d8
commit 6af5130214
2 changed files with 13 additions and 8 deletions

View File

@@ -1,12 +1,6 @@
name: GitHub Release
on:
workflow_run:
workflows: ["Docker Release"]
types:
- completed
branches:
- 'release/**'
workflow_dispatch:
permissions:
@@ -19,8 +13,6 @@ jobs:
create-github-release:
name: Create GitHub Release
runs-on: ubuntu-latest
# Only run if the upstream workflow succeeded
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
steps:
- name: Checkout code