Skip to content

Commit 7321994

Browse files
committed
ci: Handle release in the same build workflows
1 parent a0631fe commit 7321994

27 files changed

+296
-202
lines changed

.github/workflows/build_airflow.yaml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Build Airflow
33

44
env:
55
PRODUCT_NAME: airflow
6+
SDP_RELEASE_TAG: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
67

78
on:
89
workflow_dispatch:
@@ -11,6 +12,8 @@ on:
1112
push:
1213
branches:
1314
- main
15+
tags:
16+
- '*'
1417
paths:
1518
# To check dependencies, run this ( you will need to consider transitive dependencies)
1619
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'
@@ -27,7 +30,7 @@ jobs:
2730
steps:
2831
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2932
- id: shard
30-
uses: stackabletech/actions/shard@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
33+
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3134
with:
3235
product-name: ${{ env.PRODUCT_NAME }}
3336
outputs:
@@ -50,18 +53,19 @@ jobs:
5053
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
5154

5255
- name: Free Disk Space
53-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
56+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
5457

5558
- name: Build Product Image
5659
id: build
57-
uses: stackabletech/actions/build-product-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
60+
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
5861
with:
5962
product-name: ${{ env.PRODUCT_NAME }}
6063
product-version: ${{ matrix.versions }}
6164
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
65+
sdp-version: ${{ env.SDP_RELEASE_TAG }}
6266

6367
- name: Publish Container Image on docker.stackable.tech
64-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
68+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6569
with:
6670
image-registry-uri: docker.stackable.tech
6771
image-registry-username: github
@@ -71,7 +75,7 @@ jobs:
7175
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
7276

7377
- name: Publish Container Image on oci.stackable.tech
74-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
78+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
7579
with:
7680
image-registry-uri: oci.stackable.tech
7781
image-registry-username: robot$sdp+github-action-build
@@ -94,9 +98,9 @@ jobs:
9498
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
9599

96100
- name: Free Disk Space
97-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
101+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
98102
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
99-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
103+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
100104
with:
101105
image-registry-uri: docker.stackable.tech
102106
image-registry-username: github
@@ -105,7 +109,7 @@ jobs:
105109
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
106110

107111
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
108-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
112+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
109113
with:
110114
image-registry-uri: oci.stackable.tech
111115
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_druid.yaml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Build Druid
33

44
env:
55
PRODUCT_NAME: druid
6+
SDP_RELEASE_TAG: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
67

78
on:
89
workflow_dispatch:
@@ -11,6 +12,8 @@ on:
1112
push:
1213
branches:
1314
- main
15+
tags:
16+
- '*'
1417
paths:
1518
# To check dependencies, run this ( you will need to consider transitive dependencies)
1619
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'
@@ -29,7 +32,7 @@ jobs:
2932
steps:
3033
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
3134
- id: shard
32-
uses: stackabletech/actions/shard@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
35+
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3336
with:
3437
product-name: ${{ env.PRODUCT_NAME }}
3538
outputs:
@@ -52,18 +55,19 @@ jobs:
5255
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
5356

5457
- name: Free Disk Space
55-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
58+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
5659

5760
- name: Build Product Image
5861
id: build
59-
uses: stackabletech/actions/build-product-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
62+
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6063
with:
6164
product-name: ${{ env.PRODUCT_NAME }}
6265
product-version: ${{ matrix.versions }}
6366
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
67+
sdp-version: ${{ env.SDP_RELEASE_TAG }}
6468

6569
- name: Publish Container Image on docker.stackable.tech
66-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
70+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6771
with:
6872
image-registry-uri: docker.stackable.tech
6973
image-registry-username: github
@@ -73,7 +77,7 @@ jobs:
7377
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
7478

7579
- name: Publish Container Image on oci.stackable.tech
76-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
80+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
7781
with:
7882
image-registry-uri: oci.stackable.tech
7983
image-registry-username: robot$sdp+github-action-build
@@ -96,9 +100,9 @@ jobs:
96100
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
97101

98102
- name: Free Disk Space
99-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
103+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
100104
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
101-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
105+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
102106
with:
103107
image-registry-uri: docker.stackable.tech
104108
image-registry-username: github
@@ -107,7 +111,7 @@ jobs:
107111
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
108112

109113
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
110-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
114+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
111115
with:
112116
image-registry-uri: oci.stackable.tech
113117
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_hadoop.yaml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Build Hadoop
33

44
env:
55
PRODUCT_NAME: hadoop
6+
SDP_RELEASE_TAG: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
67

78
on:
89
workflow_dispatch:
@@ -11,6 +12,8 @@ on:
1112
push:
1213
branches:
1314
- main
15+
tags:
16+
- '*'
1417
paths:
1518
# To check dependencies, run this ( you will need to consider transitive dependencies)
1619
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'
@@ -29,7 +32,7 @@ jobs:
2932
steps:
3033
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
3134
- id: shard
32-
uses: stackabletech/actions/shard@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
35+
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3336
with:
3437
product-name: ${{ env.PRODUCT_NAME }}
3538
outputs:
@@ -52,18 +55,19 @@ jobs:
5255
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
5356

5457
- name: Free Disk Space
55-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
58+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
5659

5760
- name: Build Product Image
5861
id: build
59-
uses: stackabletech/actions/build-product-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
62+
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6063
with:
6164
product-name: ${{ env.PRODUCT_NAME }}
6265
product-version: ${{ matrix.versions }}
6366
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
67+
sdp-version: ${{ env.SDP_RELEASE_TAG }}
6468

6569
- name: Publish Container Image on docker.stackable.tech
66-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
70+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6771
with:
6872
image-registry-uri: docker.stackable.tech
6973
image-registry-username: github
@@ -73,7 +77,7 @@ jobs:
7377
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
7478

7579
- name: Publish Container Image on oci.stackable.tech
76-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
80+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
7781
with:
7882
image-registry-uri: oci.stackable.tech
7983
image-registry-username: robot$sdp+github-action-build
@@ -96,9 +100,9 @@ jobs:
96100
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
97101

98102
- name: Free Disk Space
99-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
103+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
100104
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
101-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
105+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
102106
with:
103107
image-registry-uri: docker.stackable.tech
104108
image-registry-username: github
@@ -107,7 +111,7 @@ jobs:
107111
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
108112

109113
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
110-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
114+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
111115
with:
112116
image-registry-uri: oci.stackable.tech
113117
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_hbase.yaml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Build HBase
33

44
env:
55
PRODUCT_NAME: hbase
6+
SDP_RELEASE_TAG: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
67

78
on:
89
workflow_dispatch:
@@ -11,6 +12,8 @@ on:
1112
push:
1213
branches:
1314
- main
15+
tags:
16+
- '*'
1417
paths:
1518
# To check dependencies, run this ( you will need to consider transitive dependencies)
1619
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'
@@ -30,7 +33,7 @@ jobs:
3033
steps:
3134
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
3235
- id: shard
33-
uses: stackabletech/actions/shard@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
36+
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3437
with:
3538
product-name: ${{ env.PRODUCT_NAME }}
3639
outputs:
@@ -53,18 +56,19 @@ jobs:
5356
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
5457

5558
- name: Free Disk Space
56-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
59+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
5760

5861
- name: Build Product Image
5962
id: build
60-
uses: stackabletech/actions/build-product-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
63+
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6164
with:
6265
product-name: ${{ env.PRODUCT_NAME }}
6366
product-version: ${{ matrix.versions }}
6467
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
68+
sdp-version: ${{ env.SDP_RELEASE_TAG }}
6569

6670
- name: Publish Container Image on docker.stackable.tech
67-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
71+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6872
with:
6973
image-registry-uri: docker.stackable.tech
7074
image-registry-username: github
@@ -74,7 +78,7 @@ jobs:
7478
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
7579

7680
- name: Publish Container Image on oci.stackable.tech
77-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
81+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
7882
with:
7983
image-registry-uri: oci.stackable.tech
8084
image-registry-username: robot$sdp+github-action-build
@@ -97,9 +101,9 @@ jobs:
97101
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
98102

99103
- name: Free Disk Space
100-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
104+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
101105
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
102-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
106+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
103107
with:
104108
image-registry-uri: docker.stackable.tech
105109
image-registry-username: github
@@ -108,7 +112,7 @@ jobs:
108112
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
109113

110114
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
111-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
115+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
112116
with:
113117
image-registry-uri: oci.stackable.tech
114118
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_hello-world.yaml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: Build Hello-World
33

44
env:
55
PRODUCT_NAME: hello-world
6+
SDP_RELEASE_TAG: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
67

78
on:
89
workflow_dispatch:
@@ -11,6 +12,8 @@ on:
1112
push:
1213
branches:
1314
- main
15+
tags:
16+
- '*'
1417
paths:
1518
# To check dependencies, run this ( you will need to consider transitive dependencies)
1619
# bake --product PRODUCT -d | grep -v 'docker buildx bake' | jq '.target | keys[]'
@@ -25,7 +28,7 @@ jobs:
2528
steps:
2629
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2730
- id: shard
28-
uses: stackabletech/actions/shard@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
31+
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
2932
with:
3033
product-name: ${{ env.PRODUCT_NAME }}
3134
outputs:
@@ -48,18 +51,19 @@ jobs:
4851
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4952

5053
- name: Free Disk Space
51-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
54+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
5255

5356
- name: Build Product Image
5457
id: build
55-
uses: stackabletech/actions/build-product-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
58+
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
5659
with:
5760
product-name: ${{ env.PRODUCT_NAME }}
5861
product-version: ${{ matrix.versions }}
5962
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
63+
sdp-version: ${{ env.SDP_RELEASE_TAG }}
6064

6165
- name: Publish Container Image on docker.stackable.tech
62-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
66+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
6367
with:
6468
image-registry-uri: docker.stackable.tech
6569
image-registry-username: github
@@ -69,7 +73,7 @@ jobs:
6973
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
7074

7175
- name: Publish Container Image on oci.stackable.tech
72-
uses: stackabletech/actions/publish-image@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
76+
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
7377
with:
7478
image-registry-uri: oci.stackable.tech
7579
image-registry-username: robot$sdp+github-action-build
@@ -92,9 +96,9 @@ jobs:
9296
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
9397

9498
- name: Free Disk Space
95-
uses: stackabletech/actions/free-disk-space@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
99+
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
96100
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
97-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
101+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
98102
with:
99103
image-registry-uri: docker.stackable.tech
100104
image-registry-username: github
@@ -103,7 +107,7 @@ jobs:
103107
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
104108

105109
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
106-
uses: stackabletech/actions/publish-index-manifest@fe921a914283975f3be1f5f47348467a94276d41 # 0.1.0
110+
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
107111
with:
108112
image-registry-uri: oci.stackable.tech
109113
image-registry-username: robot$sdp+github-action-build

0 commit comments

Comments
 (0)