Skip to content

Commit 83b5105

Browse files
committed
fix version.json which was being written as YAML, not JSON
In our version module, we are supposed to [write it as JSON](https://github.com/thefrontside/platformscript/pull/73/files) however, valid JSON requires double quotes for strings, not a bare word. This places double quotes around the version.
1 parent 683e9f6 commit 83b5105

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/signoff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
git config --global user.name "Frontside Jack"
3636
deno task rel:impact platformscript --pre=alpha | deno task changelog-entry $(deno task rel:next platformscript --pre=alpha) | cat - Changelog.md > Changelog.next.md
3737
mv Changelog.next.md Changelog.md
38-
echo ${{ steps.versions.outputs.next }} > version.json
38+
echo '"${{ steps.versions.outputs.next }}"' > version.json
3939
deno fmt
4040
git commit -am "prepare platformscript ${{ steps.versions.outputs.next }}"
4141

0 commit comments

Comments
 (0)