Skip to content

Commit

Permalink
build(Github): Adds first placeholder deploy GH Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KevSanchez authored May 15, 2024
1 parent 713c8da commit bc8bbf1
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
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"

0 comments on commit bc8bbf1

Please sign in to comment.