...
| Code Block | ||||
|---|---|---|---|---|
| ||||
cd ibek-infn-support git status git add <mynewsupportname> git commit -m "my first beautiful ibek support" . git checkout main git merge <hash/branch> git push origin cd .. cd ibek-templates/templates git add <mynewsupportdircontent> git commit -m "my first beautiful ibek template" . git checkout main git merge <hash/branch> git push origin ## now commit and push the epics-infn-ioc main project cd ../../ git commit -m "my first beautiful support" . git checkout main git merge <hash/branch> git push origin ## to create a new image a tag must be created ## list tags git tag git tag <last tag + 1 in minor or +1 in bump release (something temporary) <tag>b xx git push origin <tagname created> |
Release tags convention
The ufficial tags should have the following format : v<year>.<month>.<day> the test tags or fix during a day must have the suffix <bincremental number>
Deploy on the target EPIK8S
...