File tree 2 files changed +4
-12
lines changed
2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -69,29 +69,21 @@ jobs:
69
69
uses : >- # v4
70
70
DeterminateSystems/magic-nix-cache-action@fc6aaceb40b9845a02b91e059ec147e78d1b4e41
71
71
72
- - name : Test Build on Ubuntu
73
- if : matrix.os == 'ubuntu-24.04' && github.event_name == 'pull_request'
72
+ - name : Test Build
73
+ if : github.event_name == 'pull_request'
74
74
working-directory : web/platform
75
75
run : |
76
76
nix develop --impure --command bash -c "
77
77
bun setup && bun docs && bun run build
78
78
"
79
79
80
- - name : Test Build on macOS
81
- if : matrix.os == 'macos-14' && github.event_name == 'pull_request'
82
- working-directory : web/platform
83
- run : |
84
- nix develop --impure --command bash -c "bun setup && bun run build"
85
-
86
80
- name : Production deployment
87
81
if : matrix.os == 'ubuntu-24.04' && github.ref == 'refs/heads/main'
88
82
working-directory : web/platform
89
83
env :
90
84
DENO_DEPLOY_TOKEN : ${{ secrets.DENO_DEPLOY_TOKEN }}
91
- RESEND_API_KEY : ${{ secrets.RESEND_API_KEY }}
92
85
run : |
93
86
nix develop --impure --command bash -c "
94
87
bun prod --project=nativelink --org=nativelink \
95
88
--token=$DENO_DEPLOY_TOKEN \
96
- --env=RESEND_API_KEY=$RESEND_API_KEY
97
89
"
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ This project requires `bun` and `deno`. The nix flake ships compatible versions.
30
30
bun install
31
31
32
32
# Rebuild the docs reference. (Note MacOS: Use Bun & Bazel from Host)
33
- bun run docs. build
33
+ bun run build.docs
34
34
35
35
# Generate the simple parts of the autogenerated docs.
36
- bun run docs. generate
36
+ bun run generate.docs
37
37
38
38
# Rebuild everything. Make sure to remove the `dist` directory beforehand.
39
39
bun run build
You can’t perform that action at this time.
0 commit comments