Skip to content

Commit

Permalink
add release to cd
Browse files Browse the repository at this point in the history
  • Loading branch information
jetli committed Dec 18, 2019
1 parent 83586e6 commit ef0fe74
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,17 @@ jobs:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: target/deploy
- name: Package
shell: bash
run: |
cd target
tar czvf conduit-wasm.tar.gz deploy
shasum -a 256 conduit-wasm.tar.gz > conduit-wasm.sha256
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
target/conduit-wasm.tar.gz
target/conduit-wasm.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 ef0fe74

Please sign in to comment.