Skip to content

Commit

Permalink
Merge pull request #184 from malscent/MB-54388-UpdatesForSyncGateway304
Browse files Browse the repository at this point in the history
fixes for gcp vm creation
  • Loading branch information
malscent authored Nov 7, 2022
2 parents a6797db + b41427f commit 657bc05
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/GCP-CreateVMRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ on:
default: "7.0.2"
syncgateway:
description: "Gateway (Y/N)?"
type: choice
required: true
default: "N"
options:
- "Y"
- "N"
syncgatewayversion:
description: "Couchbase Sync Gateway Version"
required: true
default: "2.8.3"
default: "3.0.4"
license:
description: "Marketplace License"
required: true
Expand Down Expand Up @@ -56,7 +60,7 @@ jobs:
run: echo "$GITHUB_WORKSPACE"
# Runs a set of commands using the runners shell
- name: Create Couchbase Server Enterprise Image
if: ${{ github.event.inputs.name.syncgateway == 'N' }}
if: ${{ github.event.inputs.syncgateway == 'N' }}
env:
NAME: ${{github.event.inputs.name}}
ZONE: ${{github.event.inputs.zone}}
Expand All @@ -75,7 +79,7 @@ jobs:
-c "$FAMILY" \
-v "$VERSION"
- name: Create Couchbase Sync Gateway Image
if: ${{ github.event.inputs.name.syncgateway == 'Y' }}
if: ${{ github.event.inputs.syncgateway == 'Y' }}
env:
NAME: ${{github.event.inputs.name}}
ZONE: ${{github.event.inputs.zone}}
Expand Down

0 comments on commit 657bc05

Please sign in to comment.