re-add cli executable
This commit is contained in:
parent
28b80f2548
commit
82fd3e1fd0
|
@ -10,6 +10,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
node-version: 14.x
|
||||||
fetch_depth: 0
|
fetch_depth: 0
|
||||||
|
|
||||||
- name: Tag and release Docker images (Self Host)
|
- name: Tag and release Docker images (Self Host)
|
||||||
|
@ -37,6 +38,13 @@ jobs:
|
||||||
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_API_KEY }}
|
||||||
SELFHOST_TAG: latest
|
SELFHOST_TAG: latest
|
||||||
|
|
||||||
|
- name: Build CLI executables
|
||||||
|
run: |
|
||||||
|
pushd packages/cli
|
||||||
|
yarn
|
||||||
|
yarn build
|
||||||
|
popd
|
||||||
|
|
||||||
- name: Setup Helm
|
- name: Setup Helm
|
||||||
uses: azure/setup-helm@v1
|
uses: azure/setup-helm@v1
|
||||||
id: helm-install
|
id: helm-install
|
||||||
|
@ -61,4 +69,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: v${{ env.RELEASE_VERSION }}
|
name: v${{ env.RELEASE_VERSION }}
|
||||||
tag_name: v${{ env.RELEASE_VERSION }}
|
tag_name: v${{ env.RELEASE_VERSION }}
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
|
files: |
|
||||||
|
packages/cli/build/cli-win.exe
|
||||||
|
packages/cli/build/cli-linux
|
||||||
|
packages/cli/build/cli-macos
|
Loading…
Reference in New Issue