Skip to content

Commit

Permalink
chore(ci): Publish - correct is_master detection
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed Oct 23, 2024
1 parent 9410f52 commit ae86e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ jobs:
echo "Detected branch: $BRANCH"
IS_MASTER=false
if [ "$BRANCH_NAME" == "master" ]; then
if [ "$BRANCH" == "master" ]; then
IS_MASTER=true
fi
echo "Detected is_master: $IS_MASTER"
Expand Down

0 comments on commit ae86e50

Please sign in to comment.