Skip to content

Commit bdd74b2

Browse files
committed
Fix version string
1 parent e0e9842 commit bdd74b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
env:
5151
BINARY_NAME: ${{ steps.binary-name.outputs.binary }}
5252
run: |
53-
echo '__version__ = "${GITHUB_REF_NAME}"' > app/version.py
53+
echo "__version__ = \"${GITHUB_REF_NAME}\"" > app/version.py
5454
pyinstaller --onefile main.py --name $BINARY_NAME
5555
5656
- name: Create GitHub Release
@@ -348,7 +348,7 @@ jobs:
348348
349349
- name: Build binary
350350
run: |
351-
echo '__version__ = "${GITHUB_REF_NAME}"' > app/version.py
351+
echo "__version__ = \"${GITHUB_REF_NAME}\"" > app/version.py
352352
pyinstaller --onefile --name gitmastery main.py
353353
354354
- name: Generate SHA256

0 commit comments

Comments
 (0)