mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: Build site in release process (#785)
The static site wasn't building prior, so authenticating via CLI was broken!
This commit is contained in:
@@ -323,6 +323,17 @@ jobs:
|
||||
with:
|
||||
install-only: true
|
||||
|
||||
- name: Cache Node
|
||||
id: cache-node
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: |
|
||||
**/node_modules
|
||||
.eslintcache
|
||||
key: js-${{ runner.os }}-test-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
js-${{ runner.os }}-
|
||||
|
||||
- name: Build Release
|
||||
run: make release
|
||||
|
||||
|
||||
Reference in New Issue
Block a user