Skip to content

Commit 73238b5

Browse files
Generated commit to update templated files based on rev 09389cb in stackabletech/operator-templating repo. (#492)
Triggered by: Manual run triggered by: Maleware with message [Updating release pipeline to only build helmcharts once]
1 parent 01d1ebe commit 73238b5

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Author
1212
- [ ] Changes are OpenShift compatible
1313
- [ ] CRD changes approved
14-
- [ ] CRD documentation for all fields, following the [style guide](https://docs.stackable.tech/home/nightly/contributor/docs-style-guide).
14+
- [ ] CRD documentation for all fields, following the [style guide](https://docs.stackable.tech/home/nightly/contributor/docs/style-guide).
1515
- [ ] Helm chart can be installed and deployed operator works
1616
- [ ] Integration tests passed (for non trivial changes)
1717
- [ ] Changes need to be "offline" compatible
@@ -22,7 +22,7 @@
2222
- [ ] Code contains useful comments
2323
- [ ] Code contains useful logging statements
2424
- [ ] (Integration-)Test cases added
25-
- [ ] Documentation added or updated. Follows the [style guide](https://docs.stackable.tech/home/nightly/contributor/docs-style-guide).
25+
- [ ] Documentation added or updated. Follows the [style guide](https://docs.stackable.tech/home/nightly/contributor/docs/style-guide).
2626
- [ ] Changelog updated
2727
- [ ] Cargo.toml only contains references to git tags (not specific commits or branches)
2828
```

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,13 @@ jobs:
368368
make -e build
369369
- name: Publish Docker image and Helm chart
370370
if: ${{ !github.event.pull_request.head.repo.fork }}
371-
run: make -e publish
371+
run: |
372+
# We want to publish helmcharts only once as they have a common name, while still publishing both images with architecture specific tags
373+
if [ "$(uname -m)" = "x86_64" ]; then
374+
make -e publish
375+
else
376+
make -e docker-publish
377+
fi
372378
# Output the name of the published image to the Job output for later use
373379
- id: printtag
374380
name: Output image name and tag

0 commit comments

Comments
 (0)