File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 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
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```
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments