File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ jobs:
355
355
js-${{ runner.os }}-
356
356
357
357
- name : Build site
358
- run : make site/out
358
+ run : make site/out/index.html
359
359
360
360
- name : Build Release
361
361
uses :
goreleaser/[email protected]
@@ -488,7 +488,7 @@ jobs:
488
488
489
489
- name : Build
490
490
run : |
491
- make site/out
491
+ make site/out/index.html
492
492
493
493
- run : yarn playwright:install
494
494
working-directory : site
Original file line number Diff line number Diff line change 58
58
run : brew install make
59
59
60
60
- name : Build Site
61
- run : make site/out
61
+ run : make site/out/index.html
62
62
63
63
- name : Run GoReleaser
64
64
uses :
goreleaser/[email protected]
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ INSTALL_DIR=$(shell go env GOPATH)/bin
4
4
GOOS =$(shell go env GOOS)
5
5
GOARCH =$(shell go env GOARCH)
6
6
7
- bin : $(shell find -not -path './vendor/* ' -type f -name '* .go') go.mod go.sum
7
+ bin : $(shell find . -not -path './vendor/* ' -type f -name '* .go') go.mod go.sum
8
8
@echo " == This builds binaries for command-line usage."
9
9
@echo " == Use \" make build\" to embed the site."
10
10
goreleaser build --snapshot --rm-dist --single-target
@@ -20,7 +20,7 @@ coderd/database/dump.sql: $(wildcard coderd/database/migrations/*.sql)
20
20
coderd/database/querier.go : coderd/database/dump.sql $(wildcard coderd/database/queries/* .sql)
21
21
coderd/database/generate.sh
22
22
23
- dist/artifacts.json : site/out $(shell find -not -path './vendor/* ' -type f -name '* .go') go.mod go.sum
23
+ dist/artifacts.json : site/out/index.html $(shell find . -not -path './vendor/* ' -type f -name '* .go') go.mod go.sum
24
24
goreleaser release --snapshot --rm-dist --skip-sign
25
25
26
26
fmt/prettier :
@@ -76,7 +76,7 @@ provisionersdk/proto/provisioner.pb.go: provisionersdk/proto/provisioner.proto
76
76
--go-drpc_opt=paths=source_relative \
77
77
./provisionersdk/proto/provisioner.proto
78
78
79
- site/out : $(shell find ./site -not -path './site/node_modules/* ' -type f -name '* .tsx') $(shell find ./site -not -path './site/node_modules/* ' -type f -name '* .ts') site/package.json
79
+ site/out/index.html : $(shell find ./site -not -path './site/node_modules/* ' -type f -name '* .tsx') $(shell find ./site -not -path './site/node_modules/* ' -type f -name '* .ts') site/package.json
80
80
./scripts/yarn_install.sh
81
81
cd site && yarn typegen
82
82
cd site && yarn build
You can’t perform that action at this time.
0 commit comments