We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a625714 + fc23fe6 commit d48ec80Copy full SHA for d48ec80
.github/workflows/release.yaml
@@ -8,7 +8,7 @@ env:
8
VERSION: ${{ github.ref_name }}
9
10
jobs:
11
- build_images:
+ release_exe:
12
runs-on: ubuntu-latest
13
14
permissions:
make/02_mod.mk
@@ -13,3 +13,17 @@
# limitations under the License.
15
include make/test-unit.mk
16
+
17
+.PHONY: dryrun-release
18
+## Dry-run release process
19
+## @category [shared] Release
20
+dryrun-release: export RELEASE_DRYRUN := true
21
+dryrun-release: release
22
23
+.PHONY: release
24
+## Publish all release artifacts (image + helm chart)
25
26
+release: | $(NEEDS_CRANE) $(bin_dir)/scratch
27
+ $(MAKE) exe-publish
28
29
+ @echo "Release complete!"
0 commit comments