Skip to content

Commit ee5cf91

Browse files
committed
Fix typos in comparison in workflow
1 parent 1db90a4 commit ee5cf91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Set version number
8888
run: |
8989
VERSION_NUMBER=${GITHUB_REF#refs/tags/}
90-
if [[ ${{ github.ref }} == 'refs/head/main' ]]; then VERSION_NUMBER=dev; fi
90+
if [[ "${{ github.ref }}" == 'refs/heads/main' ]]; then VERSION_NUMBER=dev; fi
9191
echo "VERSION_NUMBER=$VERSION_NUMBER" >> $GITHUB_ENV
9292
- name: Download artifact
9393
uses: actions/download-artifact@v2

0 commit comments

Comments
 (0)