Skip to content

Making releases

Bob Dröge edited this page Nov 21, 2023 · 4 revisions

In order to build new cvmfs-config-eessi client packages, a new version of filesystem-layer has to be released. This can be done by tagging the repository with a tag like v1.2.3, where the v is required! This will trigger a Github action that makes a release on the Releases page of the repository

The tag can be created and pushed as follows:

git checkout main
git pull
git tag -m "filesystem-layer release v1.2.3" v1.2.3
git push --tags

The Github action will also automatically update the "latest" tag/release, which can be used for easily obtaining the latest version of the configuration packages.

Clone this wiki locally