mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 21:03:05 -07:00
Fix broken icon on force_skip_tests option in "Release: Manual" (#9246)
This commit is contained in:
committed by
GitHub
parent
5cadd37eb2
commit
b540137820
@@ -44,11 +44,6 @@ inputs:
|
|||||||
runs:
|
runs:
|
||||||
using: 'composite'
|
using: 'composite'
|
||||||
steps:
|
steps:
|
||||||
- name: '📝 Print Inputs'
|
|
||||||
shell: 'bash'
|
|
||||||
run: |
|
|
||||||
echo "${{ toJSON(inputs) }}"
|
|
||||||
|
|
||||||
- name: '👤 Configure Git User'
|
- name: '👤 Configure Git User'
|
||||||
working-directory: '${{ inputs.working-directory }}'
|
working-directory: '${{ inputs.working-directory }}'
|
||||||
shell: 'bash'
|
shell: 'bash'
|
||||||
|
|||||||
@@ -2,11 +2,6 @@ name: 'Run Tests'
|
|||||||
description: 'Runs the preflight checks and integration tests.'
|
description: 'Runs the preflight checks and integration tests.'
|
||||||
|
|
||||||
inputs:
|
inputs:
|
||||||
force_skip_tests:
|
|
||||||
description: 'Whether to force skip the tests.'
|
|
||||||
required: false
|
|
||||||
type: 'string'
|
|
||||||
default: 'false'
|
|
||||||
gemini_api_key:
|
gemini_api_key:
|
||||||
description: 'The API key for running integration tests.'
|
description: 'The API key for running integration tests.'
|
||||||
required: true
|
required: true
|
||||||
@@ -19,7 +14,6 @@ runs:
|
|||||||
using: 'composite'
|
using: 'composite'
|
||||||
steps:
|
steps:
|
||||||
- name: 'Run Tests'
|
- name: 'Run Tests'
|
||||||
if: "${{ inputs.force_skip_tests != 'true' }}"
|
|
||||||
env:
|
env:
|
||||||
GEMINI_API_KEY: '${{ inputs.gemini_api_key }}'
|
GEMINI_API_KEY: '${{ inputs.gemini_api_key }}'
|
||||||
working-directory: '${{ inputs.working-directory }}'
|
working-directory: '${{ inputs.working-directory }}'
|
||||||
|
|||||||
@@ -71,9 +71,9 @@ jobs:
|
|||||||
echo "PREVIOUS_TAG=$(git describe --tags --abbrev=0)" >> "${GITHUB_OUTPUT}"
|
echo "PREVIOUS_TAG=$(git describe --tags --abbrev=0)" >> "${GITHUB_OUTPUT}"
|
||||||
|
|
||||||
- name: 'Run Tests'
|
- name: 'Run Tests'
|
||||||
|
if: "${{github.event.inputs.force_skip_tests != 'true'}}"
|
||||||
uses: './.github/actions/run-tests'
|
uses: './.github/actions/run-tests'
|
||||||
with:
|
with:
|
||||||
force_skip_tests: '${{ github.event.inputs.force_skip_tests }}'
|
|
||||||
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
||||||
|
|
||||||
- name: 'Publish Release'
|
- name: 'Publish Release'
|
||||||
|
|||||||
@@ -46,9 +46,9 @@ jobs:
|
|||||||
run: 'npm ci'
|
run: 'npm ci'
|
||||||
|
|
||||||
- name: 'Run Tests'
|
- name: 'Run Tests'
|
||||||
|
if: "${{github.event.inputs.force_skip_tests != 'true'}}"
|
||||||
uses: './.github/actions/run-tests'
|
uses: './.github/actions/run-tests'
|
||||||
with:
|
with:
|
||||||
force_skip_tests: '${{ github.event.inputs.force_skip_tests }}'
|
|
||||||
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
||||||
|
|
||||||
- name: 'Get Nightly Version'
|
- name: 'Get Nightly Version'
|
||||||
|
|||||||
@@ -144,9 +144,9 @@ jobs:
|
|||||||
echo " Previous Tag: ${{ steps.patch_version.outputs.PREVIOUS_TAG }}"
|
echo " Previous Tag: ${{ steps.patch_version.outputs.PREVIOUS_TAG }}"
|
||||||
|
|
||||||
- name: 'Run Tests'
|
- name: 'Run Tests'
|
||||||
|
if: "${{github.event.inputs.force_skip_tests != 'true'}}"
|
||||||
uses: './.github/actions/run-tests'
|
uses: './.github/actions/run-tests'
|
||||||
with:
|
with:
|
||||||
force_skip_tests: '${{ github.event.inputs.force_skip_tests }}'
|
|
||||||
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
||||||
working-directory: './release'
|
working-directory: './release'
|
||||||
|
|
||||||
|
|||||||
@@ -141,9 +141,9 @@ jobs:
|
|||||||
run: 'npm ci'
|
run: 'npm ci'
|
||||||
|
|
||||||
- name: 'Run Tests'
|
- name: 'Run Tests'
|
||||||
|
if: "${{github.event.inputs.force_skip_tests != 'true'}}"
|
||||||
uses: './.github/actions/run-tests'
|
uses: './.github/actions/run-tests'
|
||||||
with:
|
with:
|
||||||
force_skip_tests: '${{ github.event.inputs.force_skip_tests }}'
|
|
||||||
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
gemini_api_key: '${{ secrets.GEMINI_API_KEY }}'
|
||||||
working-directory: './release'
|
working-directory: './release'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user