File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ jobs:
355355 js-${{ runner.os }}-
356356
357357 - name : Build site
358- run : make site/out
358+ run : make site/out/index.html
359359
360360 - name : Build Release
361361 uses :
goreleaser/[email protected] @@ -488,7 +488,7 @@ jobs:
488488
489489 - name : Build
490490 run : |
491- make site/out
491+ make site/out/index.html
492492
493493 - run : yarn playwright:install
494494 working-directory : site
Original file line number Diff line number Diff line change 5858 run : brew install make
5959
6060 - name : Build Site
61- run : make site/out
61+ run : make site/out/index.html
6262
6363 - name : Run GoReleaser
6464 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
44GOOS =$(shell go env GOOS)
55GOARCH =$(shell go env GOARCH)
66
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
88 @echo " == This builds binaries for command-line usage."
99 @echo " == Use \" make build\" to embed the site."
1010 goreleaser build --snapshot --rm-dist --single-target
@@ -20,7 +20,7 @@ coderd/database/dump.sql: $(wildcard coderd/database/migrations/*.sql)
2020coderd/database/querier.go : coderd/database/dump.sql $(wildcard coderd/database/queries/* .sql)
2121 coderd/database/generate.sh
2222
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
2424 goreleaser release --snapshot --rm-dist --skip-sign
2525
2626fmt/prettier :
@@ -76,7 +76,7 @@ provisionersdk/proto/provisioner.pb.go: provisionersdk/proto/provisioner.proto
7676 --go-drpc_opt=paths=source_relative \
7777 ./provisionersdk/proto/provisioner.proto
7878
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
8080 ./scripts/yarn_install.sh
8181 cd site && yarn typegen
8282 cd site && yarn build
You can’t perform that action at this time.
0 commit comments