Fixed environment variable access

This commit is contained in:
Thorsten Sommer 2024-06-22 13:19:22 +02:00
parent 2b6db06fd0
commit 3633634ba5
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -59,7 +59,7 @@ jobs:
id: read_changelog id: read_changelog
run: | run: |
# Ensure, that the matching changelog file for the current version exists: # Ensure, that the matching changelog file for the current version exists:
if [ ! -f "app/MindWork AI Studio/wwwroot/changelog/${env.FORMATTED_VERSION}.md" ]; then if [ ! -f "app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md" ]; then
echo "Changelog file 'app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md' not found" echo "Changelog file 'app/MindWork AI Studio/wwwroot/changelog/${FORMATTED_VERSION}.md' not found"
exit 1 exit 1
else else