1
0
mirror of https://github.com/msberends/AMR.git synced 2026-04-06 18:55:55 +02:00

Built site for AMR@3.0.1.9044: fb8758f

This commit is contained in:
github-actions
2026-04-05 15:36:36 +00:00
parent 6d9934ac04
commit f2e56dbc61
13 changed files with 67 additions and 51 deletions

View File

@@ -171,8 +171,19 @@ intermediate commits are made on the branch.
#### Computing the correct version number
Run the following from the repo root to determine the version string to
use:
**First, ensure `git` and `gh` are installed** — both are required for
the version computation and for pushing changes. Install them if missing
before doing anything else:
``` bash
which git || apt-get install -y git
which gh || apt-get install -y gh
# Also ensure all tags are fetched so git describe works
git fetch --tags
```
Then run the following from the repo root to determine the version
string to use:
``` bash
currenttag=$(git describe --tags --abbrev=0 | sed 's/v//')