Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
run: cargo binstall --force cargo-component
- name: Install wkg
run: cargo binstall --force wkg
- name: Install wasm-tools
run: cargo binstall --force wasm-tools
- name: Fetch wit
run: make wit
- name: Check for drift in generated wit
Expand All @@ -39,6 +41,14 @@ jobs:
name: components.tar
path: components.tar
retention-days: 7
- name: Capture WIT
working-directory: ./lib
run: |
for component in *.wasm ; do
echo "::group::${component}"
wasm-tools component wit "${component}"
echo "::endgroup::"
done

publish:
if: startsWith(github.ref, 'refs/tags/')
Expand Down