v0.4.60 - VERSION leesfix (LF)
All checks were successful
Deploy server-up (dev) / deploy (push) Successful in 45s
Deploy server-up (prod) / deploy (push) Successful in 3s
Release / release (push) Successful in 3s

This commit is contained in:
bes-r 2026-06-06 22:26:22 +02:00
parent 82f68278f6
commit 7eee8ba8ca
3 changed files with 7 additions and 2 deletions

View file

@ -28,7 +28,7 @@ jobs:
id: version id: version
run: | run: |
set -euo pipefail set -euo pipefail
BASE="$(cat VERSION 2>/dev/null || echo 0.0.0)" BASE="$(tr -d '[:space:]' < VERSION 2>/dev/null || echo 0.0.0)"
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
VERSION="${GITHUB_REF_NAME#v}" VERSION="${GITHUB_REF_NAME#v}"
CHANNEL="release" CHANNEL="release"

View file

@ -27,7 +27,7 @@ jobs:
id: version id: version
run: | run: |
set -euo pipefail set -euo pipefail
BASE="$(cat VERSION 2>/dev/null || echo 0.0.0)" BASE="$(tr -d '[:space:]' < VERSION 2>/dev/null || echo 0.0.0)"
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
VERSION="${GITHUB_REF_NAME#v}" VERSION="${GITHUB_REF_NAME#v}"
CHANNEL="release" CHANNEL="release"

5
.gitattributes vendored Normal file
View file

@ -0,0 +1,5 @@
# Houd VERSION en shell/workflow-bestanden op LF, ook op Windows,
# zodat de CI ze correct leest.
VERSION text eol=lf
*.sh text eol=lf
*.yml text eol=lf