Skip to content

Commit 8c0f403

Browse files
authored
fix: Build site in release (#561)
The static site wasn't being built before, resulting in a directory listing!
1 parent 39e5fcf commit 8c0f403

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ provisionersdk/proto: provisionersdk/proto/provisioner.proto
7777
./provisionersdk/proto/provisioner.proto
7878
.PHONY: provisionersdk/proto
7979

80-
release:
80+
release: site/out
8181
goreleaser release --snapshot --rm-dist
8282
.PHONY: release
8383

84-
site/out:
84+
site/out:
8585
./scripts/yarn_install.sh
8686
cd site && yarn typegen
8787
cd site && yarn build

examples/gcp-linux/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ resource "google_compute_instance" "dev" {
7575
}
7676
}
7777
boot_disk {
78+
auto_delete = false
7879
source = google_compute_disk.root.name
7980
}
8081
service_account {

0 commit comments

Comments
 (0)