Skip to content

Commit 6be4a5c

Browse files
committed
fix: wip
1 parent de7c6c0 commit 6be4a5c

File tree

8 files changed

+26
-0
lines changed

8 files changed

+26
-0
lines changed

.github/workflows/publish-website.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- main
77

88
env:
9+
GHJK_AUTO_HOOK: "1"
910
GHJK_VERSION: "v0.3.1-rc.1"
1011

1112
jobs:

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ on:
1818
- v*
1919

2020
env:
21+
GHJK_AUTO_HOOK: "1"
2122
GHJK_VERSION: "v0.3.1-rc.1"
2223
GHJK_ENV: "ci"
2324
REGISTRY_IMAGE: ghcr.io/${{ github.repository_owner }}/typegate

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ concurrency:
3030

3131
env:
3232
# GHJK_LOG: "debug"
33+
GHJK_AUTO_HOOK: "1"
3334
GHJK_VERSION: "v0.3.1-rc.1"
3435
GHJK_ENV: "ci"
3536
RUST_BACKTRACE: "full"

deno.lock

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/Dockerfile.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
!src/typegraph/deno/deno.json
3434
!tests/deno.jsonc
3535
!src/typegraph/specs/codegen/deno.jsonc
36+
!.ghjk/deno.jsonc
3637

3738
!deno.jsonc
3839
!deno.lock

tools/tasks/build.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ export default {
9393
inherit: "_wasm",
9494
dependsOn: "gen-pyrt-bind",
9595
async fn($) {
96+
await $`echo $PATH && which componentize-py`;
97+
await $`which componentize-py | xargs dirname | xargs ls -lsa`;
98+
await $`which componentize-py | xargs realpath | xargs dirname | xargs ls -lsa`;
9699
const wasmOut = $.env["PYRT_WASM_OUT"] ?? "./target/pyrt.wasm";
97100
// TODO: support for `world-module` is missing on the `componentize` subcmd
98101
await $`componentize-py -d ./src/wit/wit-wire.wit componentize -o ${wasmOut} src.pyrt_wit_wire.main`;

0 commit comments

Comments
 (0)