File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 11
11
# Author
12
12
- [ ] Changes are OpenShift compatible
13
13
- [ ] 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).
15
15
- [ ] Helm chart can be installed and deployed operator works
16
16
- [ ] Integration tests passed (for non trivial changes)
17
17
- [ ] Changes need to be "offline" compatible
22
22
- [ ] Code contains useful comments
23
23
- [ ] Code contains useful logging statements
24
24
- [ ] (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).
26
26
- [ ] Changelog updated
27
27
- [ ] Cargo.toml only contains references to git tags (not specific commits or branches)
28
28
```
Original file line number Diff line number Diff line change @@ -368,7 +368,13 @@ jobs:
368
368
make -e build
369
369
- name : Publish Docker image and Helm chart
370
370
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
372
378
# Output the name of the published image to the Job output for later use
373
379
- id : printtag
374
380
name : Output image name and tag
You can’t perform that action at this time.
0 commit comments