constellation/.github/actions/pseudo_version/action.yml

41 lines
1.5 KiB
YAML
Raw Normal View History

name: Determine pseudo version
description: "Determine go-like pseudo version to use as container image tag."
outputs:
semanticVersion:
description: "Semantic version based on the current HEAD"
value: ${{ steps.pseudo-version.outputs.semanticVersion }}
2023-03-14 09:53:33 -04:00
version:
description: "Version based on branch name"
value: ${{ steps.pseudo-version.outputs.version }}
timestamp:
description: "Commit timestamp based on the current HEAD"
value: ${{ steps.pseudo-version.outputs.timestamp }}
branchName:
description: "Branch name"
value: ${{ steps.pseudo-version.outputs.branchName }}
2022-09-14 09:14:26 -04:00
# Linux runner only (homedir trick does not work on macOS, required for private runner)
runs:
using: "composite"
steps:
2023-03-14 09:53:33 -04:00
- name: get version
id: pseudo-version
shell: bash
working-directory: hack/pseudo-version
run: |
homedir="$(getent passwd $(id -u) | cut -d ":" -f 6)"
export GOCACHE=${homedir}/.cache/go-build
export GOPATH=${homedir}/go
export GOMODCACHE=${homedir}/.cache/go-mod
2023-03-14 09:53:33 -04:00
version=$(go run .)
semanticVersion=$(go run . -semantic-version)
timestamp=$(go run . -print-timestamp)
branchName=$(go run . -print-branch)
2023-03-14 09:53:33 -04:00
echo "version=${version}" | tee -a "$GITHUB_OUTPUT"
echo "semanticVersion=${semanticVersion}" | tee -a "$GITHUB_OUTPUT"
echo "timestamp=${timestamp}" | tee -a "$GITHUB_OUTPUT"
echo "branchName=${branchName}" | tee -a "$GITHUB_OUTPUT"