-
Notifications
You must be signed in to change notification settings - Fork 1
Deploying to openshift
Craig Clark edited this page Dec 13, 2023
·
1 revision
An automated build process will be triggered whenever the main branch is tagged.
At the time of writing, the main branch is 1.0.x.
To deploy to dev enviroment on OpenShift:
- See what tags have already been deployed
git tag -l
- Create a new tag, these are done in sequence. For this example, if 1.0.0-dev22 exists,
git tag 1.0.0-dev23
to create the new tag. - push the tag to the repo
git push origin 1.0.0-dev23