simplify forgetool setup

This commit is contained in:
Kjeld Schouten
2026-06-06 13:51:58 +02:00
parent 1c6d7fd9dd
commit 383982aa80
2 changed files with 12 additions and 26 deletions
+6 -11
View File
@@ -62,21 +62,17 @@ jobs:
- name: Setup Forgetool
shell: bash
env:
GITHUB_TOKEN: ${{ inputs.token }}
run: |-
TAG=""
if RELEASES_JSON="$(curl -fsSL \
https://api.github.com/repos/trueforge-org/forgetool/releases/latest)"; then
TAG="$(jq -r '.tag_name // empty' <<< "${RELEASES_JSON}")"
fi
[ -n "${TAG}" ] && [ "${TAG}" != "null" ] || { echo "Failed to determine latest forgetool release tag"; exit 1; }
TAG="$(curl -fsSL \
https://api.github.com/repos/trueforge-org/forgetool/releases/latest \
| jq -r '.tag_name')"
[ -n "${TAG}" ] && [ "${TAG}" != "null" ] || { echo "Failed to determine latest stable forgetool release tag"; exit 1; }
VERSION="${TAG#v}"
VERSION="${VERSION#forgetool-v}"
case "$(uname -m)" in
x86_64) ARCH="amd64" ;;
aarch64) ARCH="arm64" ;;
*) echo "Unsupported uname architecture: $(uname -m). Supported uname values: x86_64, aarch64." && exit 1 ;;
aarch64|arm64) ARCH="arm64" ;;
*) echo "Unsupported uname architecture: $(uname -m). Supported uname values: x86_64, aarch64, arm64." && exit 1 ;;
esac
curl -fsSL -o "${RUNNER_TEMP}/forgetool.tar.gz" "https://github.com/trueforge-org/forgetool/releases/download/${TAG}/forgetool_${VERSION}_linux_${ARCH}.tar.gz" || { echo "Failed to download forgetool release ${TAG} for linux_${ARCH}"; exit 1; }
mkdir -p "${RUNNER_TEMP}/forgetool-bin"
@@ -84,7 +80,6 @@ jobs:
chmod +x "${RUNNER_TEMP}/forgetool-bin/forgetool"
echo "${RUNNER_TEMP}/forgetool-bin" >> "${GITHUB_PATH}"
- name: Get Changelog Format Version
shell: bash
if: github.event_name == 'push'
+6 -15
View File
@@ -37,26 +37,17 @@ jobs:
- name: Setup Forgetool
shell: bash
env:
GITHUB_TOKEN: ${{ inputs.token }}
run: |-
TAG=""
if RELEASES_JSON="$(curl -fsSL \
https://api.github.com/repos/trueforge-org/forgetool/releases)"; then
TAG="$(jq -r '[.[]
| select(.prerelease == true)
| .tag_name
| select(test("^(forgetool-)?v[0-9]+\\.[0-9]+\\.[0-9]+-ALPHA[0-9]+$"))
| {tag: ., alpha: (capture("ALPHA(?<n>[0-9]+)$").n | tonumber)}
] | if length > 0 then max_by(.alpha).tag else empty end' <<< "${RELEASES_JSON}")"
fi
[ -n "${TAG}" ] && [ "${TAG}" != "null" ] || TAG="v4.0.0-ALPHA24"
TAG="$(curl -fsSL \
https://api.github.com/repos/trueforge-org/forgetool/releases/latest \
| jq -r '.tag_name')"
[ -n "${TAG}" ] && [ "${TAG}" != "null" ] || { echo "Failed to determine latest stable forgetool release tag"; exit 1; }
VERSION="${TAG#v}"
VERSION="${VERSION#forgetool-v}"
case "$(uname -m)" in
x86_64) ARCH="amd64" ;;
aarch64) ARCH="arm64" ;;
*) echo "Unsupported uname architecture: $(uname -m). Supported uname values: x86_64, aarch64." && exit 1 ;;
aarch64|arm64) ARCH="arm64" ;;
*) echo "Unsupported uname architecture: $(uname -m). Supported uname values: x86_64, aarch64, arm64." && exit 1 ;;
esac
curl -fsSL -o "${RUNNER_TEMP}/forgetool.tar.gz" "https://github.com/trueforge-org/forgetool/releases/download/${TAG}/forgetool_${VERSION}_linux_${ARCH}.tar.gz" || { echo "Failed to download forgetool release ${TAG} for linux_${ARCH}"; exit 1; }
mkdir -p "${RUNNER_TEMP}/forgetool-bin"