bugfix #3

Merged
simon merged 1 commits from sidiesen/test into main 2024-11-13 08:12:06 -08:00

View File

@ -46,9 +46,7 @@ jobs:
- name: Check version match - name: Check version match
run: | run: |
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_' | tr '[:upper:]' '[:lower:]') REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_' | tr '[:upper:]' '[:lower:]')
test "$(cat $REPOSITORY_NAME/VERSION)" = "${GITHUB_REF_NAME:1}" if [ "$(cat $REPOSITORY_NAME/VERSION)" = "${GITHUB_REF_NAME:1}" ] ; then
SUCCESS=$?
if $SUCCESS; then
echo "Version matches successfully!" echo "Version matches successfully!"
else else
echo "Version must match!" echo "Version must match!"