Skip to content

Commit

Permalink
chore(core): disable console building in make-latest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarthak-instill committed Jan 5, 2024
1 parent a980770 commit 6d767fd
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/make-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Make Latest

on:
workflow_dispatch:
inputs:
disableConsoleBuild:
description: 'Disable console'
required: true
default: "true"
pull_request:
push:
branches:
Expand Down Expand Up @@ -51,7 +56,11 @@ jobs:

- name: Launch Instill VDP (latest)
run: |
make latest BUILD=true PROFILE=all EDITION=local-ce:test
if "${{ github.event.inputs.disableConsoleBuild }}"; then
make latest BUILD=true PROFILE=console EDITION=local-ce:test
else
make latest BUILD=true PROFILE=all EDITION=local-ce:test
fi
- name: List all docker containers
run: |
Expand Down

0 comments on commit 6d767fd

Please sign in to comment.