Skip to content

Commit ede71e9

Browse files
committed
fix: Use "make build" on deploy
This was a missed item in #1259.
1 parent dacc025 commit ede71e9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/coder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ jobs:
355355
js-${{ runner.os }}-
356356
357357
- name: Build Release
358-
run: make release
358+
run: make build
359359

360360
- uses: actions/upload-artifact@v3
361361
with:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ coderd/database/querier.go: coderd/database/dump.sql $(wildcard coderd/database/
1616

1717
# This is called "dist" to target the output directory for binaries.
1818
dist: site/out $(find -not -path './vendor/*' -type f -name '*.go') go.mod go.sum
19-
goreleaser build --snapshot --rm-dist
19+
goreleaser release --snapshot --rm-dist
2020

2121
fmt/prettier:
2222
@echo "--- prettier"

docs/CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ Coder requires Go 1.18+, Node 14+, and GNU Make.
99

1010
Use the following `make` commands and scripts in development:
1111

12-
- `make bin` builds binaries
12+
- `make build` compiles binaries and release packages
1313
- `make install` installs binaries to `$GOPATH/bin`
1414
- `make test`
15-
- `make release` dry runs a new release
1615
- `./develop.sh` hot reloads for front-end development
1716

1817
## Styling

0 commit comments

Comments
 (0)