Skip to content

Commit

Permalink
add zip format to release assets
Browse files Browse the repository at this point in the history
  • Loading branch information
jetli committed Dec 18, 2019
1 parent ef0fe74 commit 774d310
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@ jobs:
run: |
cd target
tar czvf conduit-wasm.tar.gz deploy
shasum -a 256 conduit-wasm.tar.gz > conduit-wasm.sha256
zip -r conduit-wasm.zip deploy
shasum -a 256 conduit-wasm.tar.gz > conduit-wasm.tar.gz.sha256
shasum -a 256 conduit-wasm.zip > conduit-wasm.zip.sha256
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
target/conduit-wasm.tar.gz
target/conduit-wasm.sha256
target/conduit-wasm.tar.gz.sha256
target/conduit-wasm.zip
target/conduit-wasm.zip.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion crates/conduit-wasm/src/components/footer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl Component for Footer {
<span class="attribution">
{ "© 2019. An interactive learning project from" }
<a href="https://thinkster.io"> { "Thinkster" } </a>
{ ". Code licensed under MIT. " }
{ ". Code licensed under MIT." }
</span>
</div>
</footer>
Expand Down

0 comments on commit 774d310

Please sign in to comment.