mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-27 13:34:15 -07:00
14 lines
310 B
YAML
14 lines
310 B
YAML
name: Test Secrets If
|
|
on:
|
|
workflow_dispatch:
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check Secret
|
|
if: ${{ secrets.APP_ID != '' }}
|
|
run: echo "Secret is not empty"
|
|
- name: Check Secret 2
|
|
if: secrets.APP_ID != ''
|
|
run: echo "Secret is not empty 2"
|