From af5c6f1de9e1fa675592b82e97f135c8308dad19 Mon Sep 17 00:00:00 2001 From: kylecarbs Date: Wed, 4 May 2022 14:17:36 +0000 Subject: [PATCH] fix: Build site in release 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 d107374511e03..7236c33b84946 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