Skip to content

Commit

Permalink
Fix percent
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Dec 28, 2020
1 parent 11c1458 commit 27f78b0
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 @@ -75,7 +75,7 @@ jobs:
import re
with open("get.php", 'r+', encoding='utf-8') as f:
text = f.read()
text = re.sub(r"https://github.com/nvdaes/readFeeds/.*\d.nvda-addon", "\"%s\"", text) % $ {{ buildAndUpload.steps.upload.browser_download_url }}
text = re.sub(r"https://github.com/nvdaes/readFeeds/.*\d.nvda-addon", "\"%s\"", text) % "$ {{ buildAndUpload.steps.upload.browser_download_url }}"
f.seek(0)
f.write(text)
f.truncate()
Expand Down

0 comments on commit 27f78b0

Please sign in to comment.