ci: skip build steps in setup action when using pre-built artifact

This commit is contained in:
mkorwel
2026-04-21 23:00:01 +00:00
parent 4125bd6134
commit b3d1ced3b6
+3 -2
View File
@@ -44,11 +44,12 @@ runs:
shell: 'bash'
- name: 'Build Core (Required for all tests)'
if: "${{ inputs.skip-npm-ci != 'true' }}"
run: 'npm run build --workspace @google/gemini-cli-core'
shell: 'bash'
- name: 'Build from source'
if: "${{ inputs.mode == 'source' }}"
if: "${{ inputs.mode == 'source' && inputs.skip-npm-ci != 'true' }}"
run: 'npm run build'
shell: 'bash'