-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(Github): Adds first placeholder deploy GH Workflow
- Loading branch information
1 parent
713c8da
commit bc8bbf1
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
name: Run deploy to GCP | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ENVIRONMENT_NAME_OVERRIDE: | ||
description: "Environment name to override the environment used in the workflow" | ||
required: false | ||
type: string | ||
dry_run: | ||
description: "Makes the workflow trigger in dry run mode (no components will be published or deployed to the actual environment infrastructure)" | ||
required: false | ||
default: false | ||
type: boolean | ||
|
||
push: | ||
branches: | ||
- main | ||
- staging | ||
|
||
paths: | ||
- 'client/**' | ||
- 'cms/**' | ||
- '.github/workflows/*' | ||
- 'infrastructure/**' | ||
|
||
|
||
jobs: | ||
hello-world: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Hello World | ||
run: echo "Hello World" |