Skip to content

Commit

Permalink
fixed regex
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Jan 30, 2025
1 parent 7e7f35d commit fba266f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/NightlyPublished_CLI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ jobs:
fi
# Is the file of the correct form?
file_name=$(basename $file)
if ! [[ $file_name =~ ^VCDB_[0-9]+.*\.omex$ ]]; then
echo "Input is invalid. Expecting 'VCDB_#*#_*.omex format, got '${file_name}'."
if ! [[ $file_name =~ ^VCDB_published_[0-9]+.*\.omex$ ]]; then
echo "Input is invalid. Expecting 'VCDB_published_#*#_*.omex format, got '${file_name}'."
continue
fi
Expand Down

0 comments on commit fba266f

Please sign in to comment.