Skip to content

Commit d0d882a

Browse files
committed
ci(template): Remove outdated comments
1 parent 6cb110d commit d0d882a

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

template/.github/workflows/build.yaml.j2

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
build-arguments: VERSION=${{ steps.version.outputs.OPERATOR_VERSION }}
174174
container-file: docker/Dockerfile
175175

176-
- name: Publish Container Image (oci.stackable.tech)
176+
- name: Publish Container Image to oci.stackable.tech
177177
if: ${{ !github.event.pull_request.head.repo.fork }}
178178
uses: stackabletech/actions/publish-image@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
179179
with:
@@ -184,13 +184,13 @@ jobs:
184184
image-manifest-tag: ${{ steps.build.outputs.image-manifest-tag }}
185185
source-image-uri: ${{ steps.build.outputs.image-manifest-uri }}
186186

187-
- name: Publish Container Image (quay.io)
187+
- name: Publish Container Image to quay.io
188188
if: ${{ !github.event.pull_request.head.repo.fork }}
189189
uses: stackabletech/actions/publish-image@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
190190
with:
191191
image-registry-uri: quay.io
192-
image-registry-username: stackable+robot_sdp_github_action_build # Doesn't exist yet
193-
image-registry-password: ${{ secrets.QUAY_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }} # Doesn't exist yet
192+
image-registry-username: stackable+robot_sdp_github_action_build
193+
image-registry-password: ${{ secrets.QUAY_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
194194
image-repository: stackable/sdp/${{ env.OPERATOR_NAME }}
195195
image-manifest-tag: ${{ steps.build.outputs.image-manifest-tag }}
196196
source-image-uri: ${{ steps.build.outputs.image-manifest-uri }}
@@ -213,7 +213,7 @@ jobs:
213213
with:
214214
persist-credentials: false
215215

216-
- name: Publish and Sign Image Index (oci.stackable.tech)
216+
- name: Publish and Sign Image Index to oci.stackable.tech
217217
uses: stackabletech/actions/publish-image-index-manifest@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
218218
with:
219219
image-registry-uri: oci.stackable.tech
@@ -222,12 +222,12 @@ jobs:
222222
image-repository: sdp/${{ env.OPERATOR_NAME }}
223223
image-index-manifest-tag: ${{ needs.build-container-image.outputs.operator-version }}
224224

225-
- name: Publish and Sign Image Index (quay.io)
225+
- name: Publish and Sign Image Index to quay.io
226226
uses: stackabletech/actions/publish-image-index-manifest@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
227227
with:
228228
image-registry-uri: quay.io
229-
image-registry-username: stackable+robot_sdp_github_action_build # Doesn't exist yet
230-
image-registry-password: ${{ secrets.QUAY_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }} # Doesn't exist yet
229+
image-registry-username: stackable+robot_sdp_github_action_build
230+
image-registry-password: ${{ secrets.QUAY_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
231231
image-repository: stackable/sdp/${{ env.OPERATOR_NAME }}
232232
image-index-manifest-tag: ${{ needs.build-container-image.outputs.operator-version }}
233233

@@ -249,7 +249,7 @@ jobs:
249249
persist-credentials: false
250250
submodules: recursive
251251

252-
- name: Package, Publish, and Sign Helm Chart (coi.stackable.tech)
252+
- name: Package, Publish, and Sign Helm Chart to oci.stackable.tech
253253
uses: stackabletech/actions/publish-helm-chart@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
254254
with:
255255
chart-registry-uri: oci.stackable.tech
@@ -261,12 +261,12 @@ jobs:
261261
app-version: ${{ needs.build-container-image.outputs.operator-version }}
262262
publish-and-sign: ${{ !github.event.pull_request.head.repo.fork }}
263263

264-
- name: Package, Publish, and Sign Helm Chart (quay.io)
264+
- name: Package, Publish, and Sign Helm Chart to quay.io
265265
uses: stackabletech/actions/publish-helm-chart@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
266266
with:
267267
chart-registry-uri: quay.io
268-
chart-registry-username: stackable+robot_sdp_charts_github_action_build # Doesn't exist yet
269-
chart-registry-password: ${{ secrets.QUAY_ROBOT_SDP_CHARTS_GITHUB_ACTION_BUILD_SECRET }} # Doesn't exist yet
268+
chart-registry-username: stackable+robot_sdp_charts_github_action_build
269+
chart-registry-password: ${{ secrets.QUAY_ROBOT_SDP_CHARTS_GITHUB_ACTION_BUILD_SECRET }}
270270
chart-repository: stackable/sdp-charts
271271
chart-directory: deploy/helm/${{ env.OPERATOR_NAME }}
272272
chart-version: ${{ needs.build-container-image.outputs.operator-version }}
@@ -291,13 +291,13 @@ jobs:
291291
- arm64
292292
runs-on: ubuntu-latest
293293
steps:
294-
- name: Run OpenShift Preflight Check (oci.stackable.tech)
294+
- name: Run OpenShift Preflight Check for oci.stackable.tech
295295
uses: stackabletech/actions/run-openshift-preflight@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
296296
with:
297297
image-index-uri: oci.stackable.tech/sdp/${{ env.OPERATOR_NAME }}:${{ needs.build-container-image.outputs.operator-version }}
298298
image-architecture: ${{ matrix.arch }}
299299

300-
- name: Run OpenShift Preflight Check (quay.io)
300+
- name: Run OpenShift Preflight Check for quay.io
301301
uses: stackabletech/actions/run-openshift-preflight@6a84fcfccf4ee37d85217407bc6a94742afbb45f # v0.14.2
302302
with:
303303
image-index-uri: quay.io/stackable/sdp/${{ env.OPERATOR_NAME }}:${{ needs.build-container-image.outputs.operator-version }}

0 commit comments

Comments
 (0)