Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
compose-files: |
compose.yaml
compose.prod.yaml
mode: ""
command: "compose help"
env:
DEFANG_GH_ACTION_TEST_ENV: "foo"
Expand All @@ -53,7 +52,6 @@ jobs:
config-env-vars: ""
cwd: "./test"
compose-files: ""
mode: "staging"
verbose: true
command: "compose up --dry-run --project-name github-action-test"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ jobs:
config-env-vars: "API_KEY DB_CONNECTION_STRING"
cwd: "./test"
compose-files: "./docker-compose.yaml"
mode: "staging"
provider: "aws"
mode: "balanced" # deprecated in favor of stack:
provider: "aws" # deprecated in favor of stack:
stack: "production"
command: "compose up"
verbose: true
Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ inputs:
required: false
default: "."
mode:
description: "The deployment mode. Options: 'affordable', 'balanced', 'high-availability'"
description: "The deployment mode. Options: 'affordable', 'balanced', 'high-availability'. Deprecated in favor of stack:"
Comment thread
lionello marked this conversation as resolved.
required: false
default: ""
stack:
Expand All @@ -47,7 +47,7 @@ inputs:
required: false
default: ""
provider:
description: "The cloud provider to deploy to. Options: 'aws', 'defang', 'digitalocean', 'gcp'. If not specified, the CLI will determine the appropriate provider."
description: "The cloud provider to deploy to. Options: 'aws', 'azure', 'digitalocean', 'gcp'. If not specified, the CLI will determine the appropriate provider. Deprecated in favor of stack:"
required: false
default: ""
verbose:
Expand Down
Loading