Skip to content

Commit ed07e5e

Browse files
committed
fix
1 parent 73c155a commit ed07e5e

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ jobs:
2525
- name: docgen
2626
run: |
2727
bazel query 'kind(starlark_doc_extract, //...)' | xargs bazel build
28+
# TODO(alexeagle): we should have a preview service in Aspect Workflows
29+
# which could render the changed docs and show a delta
2830
- uses: actions/upload-artifact@v4
2931
with:
30-
path: bazel-out/*/bin/**/*.doc_extract.binaryproto
32+
name: docs
33+
path: bazel-out/k8-fastbuild/bin/**/*.doc_extract.binaryproto
3134

3235
# Prepares dynamic test matrix values
3336
matrix-prep:

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ register_toolchains("@swc_toolchains//:all")
2626
# Patch in https://github.com/bazelbuild/bazel-skylib/pull/571
2727
git_override(
2828
module_name = "bazel_skylib",
29-
commit = "17cdc147f29ae3bd73b5dc0d42cdc288338b0a7e",
29+
commit = "429edfb2b9c7be99208b2095105ddf8d43ee492b",
3030
remote = "https://github.com/alexeagle/bazel-skylib.git",
3131
)
3232

swc/private/BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ bzl_library(
1212
srcs = ["swc.bzl"],
1313
visibility = ["//swc:__subpackages__"],
1414
deps = [
15+
"//swc:providers",
16+
"@aspect_bazel_lib//lib:copy_file",
1517
"@aspect_bazel_lib//lib:platform_utils",
1618
"@aspect_rules_js//js:libs",
1719
"@aspect_rules_js//js:providers",

0 commit comments

Comments
 (0)