Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,7 @@
GEMINI_MODEL: '${{ inputs.gemini_model }}'

- name: 'Upload Gemini CLI outputs'
if: |-
${{ inputs.upload_artifacts }}
if: inputs.upload_artifacts == 'true'

Check failure on line 302 in action.yml

View workflow job for this annotation

GitHub Actions / Lint (yaml)

302:11 [quoted-strings] string value is not quoted with single quotes
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if: inputs.upload_artifacts == 'true'
if: |-
${{ inputs.upload_artifacts == 'true'}}

uses: 'actions/upload-artifact@v4' # ratchet:exclude
with:
name: 'gemini-output'
Expand Down
Loading