Skip to content

Commit

Permalink
Debug release var issue
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellmattryan committed Nov 15, 2024
1 parent 7cf3aae commit 5bafd48
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cd.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ jobs:
- name: Check Tag & Version
run: |
if [[ ! $PLUGIN_VERSION == *"$VERSION"* ]] || [[ ! $PLUGIN_VERSION == *"$STAGE"* ]]; then
echo $PLUGIN_VERSION
echo $VERSION
echo $STAGE
if [[ $PLUGIN_VERSION != *"$VERSION"* ]] || [[ $PLUGIN_VERSION != *"$STAGE"* ]]; then
echo "The specific plugin version and tag-derived version do not match. Exiting."
exit 1
fi
Expand Down

0 comments on commit 5bafd48

Please sign in to comment.