Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 517 Bytes

readme.md

File metadata and controls

29 lines (20 loc) · 517 Bytes

GitHub Actions

This repository is a collection of GitHub actions.

Versioning

In order to have a versioning in place and working, create lightweight tags that point to the appropriate minor release versions.

Creating a new minor release:

git tag v2
git push --tags

Replacing an already existing minor release:

git tag -d v2
git push origin :refs/tags/v2
git tag v2
git push --tags