Skip to content

Commit

Permalink
build: update inputs (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlnf authored Jan 26, 2025
1 parent afbea40 commit 78d1bde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: ./.github/workflows/deploy-job.yml
with:
environment: dev
grafana_diagnostics_enabled: true
grafana_diagnostics_enabled: 'true'
permissions:
id-token: write
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
type: string
grafana_diagnostics_enabled:
required: false
type: boolean
type: string
secrets:
gcp_provider_name:
required: true
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
FIREBASE_CLIENT_EMAIL=${{ secrets.FIREBASE_CLIENT_EMAIL }},
FIREBASE_PROJECT_ID=${{ secrets.FIREBASE_PROJECT_ID }}
GRAFANA_ENVIRONMENT=${{ inputs.environment }},
GRAFANA_DIAGNOSTICS_ENABLED=${{ secrets.grafana_diagnostics_enabled || 'false' }},
GRAFANA_DIAGNOSTICS_ENABLED=${{ inputs.grafana_diagnostics_enabled || 'false' }},
GRAFANA_OTLP_ENDPOINT=${{ secrets.grafana_otlp_endpoint }},
GRAFANA_INSTANCE_ID=${{ secrets.grafana_instance_id }},
GRAFANA_API_KEY=${{ secrets.grafana_api_key }}
Expand Down

0 comments on commit 78d1bde

Please sign in to comment.