Skip to content

Commit ef0fe74

Browse files
committed
add release to cd
1 parent 83586e6 commit ef0fe74

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/cd.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,17 @@ jobs:
2222
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
2323
BRANCH: gh-pages
2424
FOLDER: target/deploy
25+
- name: Package
26+
shell: bash
27+
run: |
28+
cd target
29+
tar czvf conduit-wasm.tar.gz deploy
30+
shasum -a 256 conduit-wasm.tar.gz > conduit-wasm.sha256
31+
- name: Release
32+
uses: softprops/action-gh-release@v1
33+
with:
34+
files: |
35+
target/conduit-wasm.tar.gz
36+
target/conduit-wasm.sha256
37+
env:
38+
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)