We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21490d8 commit d7c0c75Copy full SHA for d7c0c75
.github/workflows/ci.yaml
@@ -24,6 +24,8 @@ jobs:
24
run: cargo binstall --force cargo-component
25
- name: Install wkg
26
run: cargo binstall --force wkg
27
+ - name: Install wasm-tools
28
+ run: cargo binstall --force wasm-tools
29
- name: Fetch wit
30
run: make wit
31
- name: Check for drift in generated wit
@@ -39,6 +41,14 @@ jobs:
39
41
name: components.tar
40
42
path: components.tar
43
retention-days: 7
44
+ - name: Capture WIT
45
+ working-directory: ./lib
46
+ run: |
47
+ for component in *.wasm ; do
48
+ echo "::group::${component}"
49
+ wasm-tools component wit "${component}"
50
+ echo "::endgroup::"
51
+ done
52
53
publish:
54
if: startsWith(github.ref, 'refs/tags/')
0 commit comments