-
Notifications
You must be signed in to change notification settings - Fork 688
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add required check for release build #5934
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks okay to me
There is an order of operations bug in this PR. it should not be merged as is. moving to draft until it's addressed |
Fixed the order of operations issue - the github release step is required to happen before the docker build step, since the docker builds use the binaries from the github release. not ideal, but it can be addressed later - i'd like to see the github release happen as the last step in this workflow. I've added in the removal of the armv7 builds to this PR since it's a 1-line change: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Adds an
environemnt
required check before a release build can be started, configured forBuild Release
environment.additionally, moved the create github release step so that it is triggered after the docker image is built/pushed .