Skip to content

Commit 774d310

Browse files
committed
add zip format to release assets
1 parent ef0fe74 commit 774d310

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/cd.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,16 @@ jobs:
2727
run: |
2828
cd target
2929
tar czvf conduit-wasm.tar.gz deploy
30-
shasum -a 256 conduit-wasm.tar.gz > conduit-wasm.sha256
30+
zip -r conduit-wasm.zip deploy
31+
shasum -a 256 conduit-wasm.tar.gz > conduit-wasm.tar.gz.sha256
32+
shasum -a 256 conduit-wasm.zip > conduit-wasm.zip.sha256
3133
- name: Release
3234
uses: softprops/action-gh-release@v1
3335
with:
3436
files: |
3537
target/conduit-wasm.tar.gz
36-
target/conduit-wasm.sha256
38+
target/conduit-wasm.tar.gz.sha256
39+
target/conduit-wasm.zip
40+
target/conduit-wasm.zip.sha256
3741
env:
3842
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

crates/conduit-wasm/src/components/footer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ impl Component for Footer {
2525
<span class="attribution">
2626
{ "© 2019. An interactive learning project from" }
2727
<a href="https://thinkster.io"> { "Thinkster" } </a>
28-
{ ". Code licensed under MIT. " }
28+
{ ". Code licensed under MIT." }
2929
</span>
3030
</div>
3131
</footer>

0 commit comments

Comments
 (0)