We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1f8cbf commit e96ac2dCopy full SHA for e96ac2d
.github/workflows/release.yml
@@ -3,6 +3,12 @@ name: Release
3
on:
4
push:
5
tags: ["v*"]
6
+ workflow_dispatch:
7
+ inputs:
8
+ dry-run:
9
+ description: "Build and validate without publishing"
10
+ type: boolean
11
+ default: true
12
13
permissions:
14
contents: write
@@ -36,6 +42,7 @@ jobs:
36
42
37
43
release:
38
44
name: Create Release
45
+ if: ${{ !inputs.dry-run }}
39
46
needs: build
40
47
runs-on: ubuntu-latest
41
48
steps:
@@ -53,6 +60,7 @@ jobs:
53
60
54
61
docker:
55
62
name: Push Docker Image
63
56
64
57
65
58
66
0 commit comments