mirror of https://github.com/rancher/rke-tools.git
24 lines
451 B
Bash
Executable File
24 lines
451 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
|
|
DIRTY="-dirty"
|
|
fi
|
|
|
|
COMMIT=$(git rev-parse --short HEAD)
|
|
|
|
if [[ $GITHUB_ACTIONS = true && $GITHUB_REF_TYPE = "tag" ]]; then
|
|
TAG_NAME=$GITHUB_REF_NAME
|
|
fi
|
|
|
|
GIT_TAG=${TAG_NAME:-$(git tag -l --contains HEAD | head -n 1)}
|
|
|
|
if [[ -z "$DIRTY" && -n "$GIT_TAG" ]]; then
|
|
VERSION=$GIT_TAG
|
|
else
|
|
VERSION="${COMMIT}${DIRTY}"
|
|
fi
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
ARCH=amd64
|
|
fi
|