8000 fix: Build site in deploy by kylecarbs · Pull Request #1265 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: Build site in deploy #1265

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Build site in deploy
  • Loading branch information
kylecarbs committed May 2, 2022
commit 1eee2b93a419e9dfbe1b16ed4706cf237dbf0fdc
3 changes: 3 additions & 0 deletions .github/workflows/coder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,9 @@ jobs:
restore-keys: |
js-${{ runner.os }}-

- name: Build site
run: make site/out

- name: Build Release
uses: goreleaser/goreleaser-action@v2.9.1
with:
Expand Down
0