Skip to content

Commit

Permalink
fix logic to determine offical X.Y.Z release
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe authored Oct 21, 2024
1 parent 9df7b43 commit 170f050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/jobs/docker_build_metplus_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dockerhub_repo_analysis=dtcenter/metplus-analysis

# check if tag is official or bugfix release -- no -betaN or -rcN suffix
is_official=1
if [[ ! "${SOURCE_BRANCH}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
if [[ "${SOURCE_BRANCH}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
is_official=0
fi

Expand Down

0 comments on commit 170f050

Please sign in to comment.