We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01e4e1b commit 823e58bCopy full SHA for 823e58b
.github/workflows/publish.yaml
@@ -37,3 +37,10 @@ jobs:
37
38
- name: Publish images
39
run: just publish registry ${{ inputs.VERSION || github.ref_name }}
40
+
41
+ - name: Publish image (tedge-main branch)
42
+ env:
43
+ IMAGE: tedge-container-bundle-main
44
+ TEDGE_IMAGE: tedge-main
45
+ TEDGE_TAG: latest
46
+ run: just publish registry ${{ inputs.VERSION || github.ref_name }}
justfile
@@ -1,7 +1,7 @@
1
set dotenv-load
2
set export
3
4
-IMAGE := "tedge-container-bundle"
+IMAGE := env_var_or_default("IMAGE", "tedge-container-bundle")
5
TEDGE_IMAGE := env_var_or_default("TEDGE_IMAGE", "tedge")
6
TEDGE_TAG := env_var_or_default("TEDGE_TAG", "1.4.2")
7
0 commit comments