Skip to content

Commit

Permalink
fix: typo and better UX when deploying
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavovalverde committed Sep 26, 2024
1 parent 7a8f471 commit c10babe
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cd-deploy-nodes-gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@ on:
workflow_dispatch:
inputs:
network:
default: 'Mainnet'
default: Mainnet
description: 'Network to deploy: Mainnet or Testnet'
required: true
type: choice
options:
- Mainnet
- Testnet
cached_disk_type:
default: tip
description: 'Type of cached disk to use'
Expand Down Expand Up @@ -194,7 +198,7 @@ jobs:
network: ${{ inputs.network || vars.ZCASH_NETWORK }}
disk_prefix: zebrad-cache
disk_suffix: ${{ inputs.cached_disk_type || 'tip' }}
prefer_main_cached_state: (github.event_name == 'push' && github.ref_name == 'main' && true) || false
prefer_main_cached_state: ${{ (github.event_name == 'push' && github.ref_name == 'main' && true) || false }}

# Deploy Managed Instance Groups (MiGs) for Mainnet and Testnet,
# with one node in the configured GCP region.
Expand Down

0 comments on commit c10babe

Please sign in to comment.