Skip to content

Commit 62d5cbb

Browse files
committed
ci: fix jq command
1 parent ee31e69 commit 62d5cbb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
- name: Replace placeholders in manifest with repo/version strings
5959
id: sub_manifest_link_version
6060
run: |
61-
jq '.version = "${{ steps.get_version.outputs.version-without-v }}"
62-
.url = "https://github.com/${{github.repository}}"
63-
.manifest: "https://github.com/${{github.repository}}/releases/latest/download/module.json"
64-
.download: "https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip"
61+
jq '.version = "${{ steps.get_version.outputs.version-without-v }}" |
62+
.url = "https://github.com/${{github.repository}}" |
63+
.manifest = "https://github.com/${{github.repository}}/releases/latest/download/module.json" |
64+
.download = "https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip" |
6565
.flags.hotReload = false' dist/module.json > module.json
6666
mv module.json dist/module.json
6767

0 commit comments

Comments
 (0)