Skip to content

Commit

Permalink
Fix next branch checker
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanpro committed Aug 9, 2024
1 parent 2a55e2b commit 4af6a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
if [[ ${{ contains(github.event.pull_request.body, 'ci:next') }} ]]; then
export VFE_BRANCH=next
fi
if [[ ${{ steps.install-vfe.outputs.match != '' }} ]]; then
if [[ "${{ steps.install-vfe.outputs.match }}" != "" ]]; then
export VFE_BRANCH=${{ steps.install-vfe.outputs.group1 }}
fi
echo "VFE_BRANCH=${VFE_BRANCH}" >> $GITHUB_ENV
Expand Down

0 comments on commit 4af6a08

Please sign in to comment.