From e860cc48144bc5f4dabe8e44f11d4abb155484e0 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Wed, 4 May 2022 09:23:48 -0500 Subject: [PATCH] fix: Build site in release (#1283) This was using Mac Make, which is missing some options: https://github.com/coder/coder/runs/6265845123?check_suite_focus=true#step:10:6 --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d107374511..7236c33b84 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -54,6 +54,9 @@ jobs: restore-keys: | js-${{ runner.os }}- + - name: Install make + run: brew install make + - name: Build Site run: make site/out