We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22835e8 commit b9add10Copy full SHA for b9add10
.github/workflows/prebuilt.yml
@@ -8,9 +8,13 @@ on:
8
tag:
9
description: "Release tag to upload assets to (e.g., v3.51.0-build1). Leave blank to use package.json"
10
required: false
11
+ workflow_run:
12
+ workflows: ["create-release"]
13
+ types: [completed]
14
15
jobs:
16
ensure-release:
17
+ if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }}
18
runs-on: ubuntu-latest
19
outputs:
20
tag: ${{ steps.ver.outputs.tag }}
0 commit comments