We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fc8e02 commit 86c1070Copy full SHA for 86c1070
.github/workflows/release.yml
@@ -67,9 +67,12 @@ jobs:
67
68
- name: Generate release description
69
run: |
70
+ export checksum=${{ steps.hash.outputs.sha256 }}
71
+ export download_url=${{ steps.tag.outputs.download_url }}
72
- yq -i '.plugins[0].wasm.url = \"$DOWNLOAD_URL\"' .github/release_output_template.yaml
- yq -i '.plugins[0].wasm.sha256 = \"$SHA256\"' .github/release_output_template.yaml
73
+
74
+ yq -i '.plugins[0].wasm.url = env(download_url)' .github/release_output_template.yaml
75
+ yq -i '.plugins[0].wasm.sha256 = env(checksum)' .github/release_output_template.yaml
76
77
# Create the release body with the warning message at the top
78
echo "> [!WARNING]" > release_body.md
0 commit comments