Skip to content

Commit

Permalink
[NO-ISSUE] Execute make build to update generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
brusdev committed Apr 24, 2024
1 parent df9ff08 commit a66698b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: go mod tidy && git status && git diff-index --quiet HEAD --

- name: Check generate files
run: make generate-deploy && make bundle && git status && git diff-index --quiet HEAD --
run: make build && make generate-deploy && make bundle && git status && git diff-index --quiet HEAD --

- name: Build the image
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
sed -i "s~^VERSION ?=.*~VERSION ?= ${VERSION}~" Makefile
sed -i "s~^OPERATOR_VERSION :=.*~OPERATOR_VERSION := ${VERSION}~" Makefile
sed -i "s~^LABEL version=.*~LABEL version=\"${VERSION}\"~g" Dockerfile
make generate-deploy && make bundle && git status
make build && make generate-deploy && make bundle && git status
git commit --all --message "Update version to ${VERSION}" || echo "nothing to commit"
- name: Update related images
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
sed -i "/RELATED_IMAGE_ActiveMQ_Artemis_Broker_Kubernetes_${ACTIVEMQ_ARTEMIS_COMPACT_VERSION}/,/value:/ s~value:.*~value: quay.io/artemiscloud/activemq-artemis-broker-kubernetes@${ACTIVEMQ_ARTEMIS_BROKER_KUBERNETES_DIGEST}~" ${RELATED_IMAGES_FILE}
fi
done
make generate-deploy && make bundle && git status
make build && make generate-deploy && make bundle && git status
git commit --all --message "Update related images to ${ACTIVEMQ_ARTEMIS_VERSION}" || echo "nothing to commit"
- name: Push commits
Expand Down

0 comments on commit a66698b

Please sign in to comment.