Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Dec 22, 2020
1 parent 5ba2f7a commit 6210645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/upload-on-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with open("buildVars.py", 'r+', encoding='utf-8') as f:
text = f.read()
version = "${{ github.ref }}".split("/")[-1]
text = re.sub("\"addon_version\" : ", "\"addon_version\" : \"%s\"", text % version)
text = re.sub("\"addon_version\" : ", "\"addon_version\" : \"%s\"", text) % version
f.seek(0)
f.write(text)
f.truncate()
Expand Down

0 comments on commit 6210645

Please sign in to comment.