diff --git a/.github/workflows/deploy_dev.yml b/.github/workflows/deploy_dev.yml new file mode 100644 index 00000000..5ae91d39 --- /dev/null +++ b/.github/workflows/deploy_dev.yml @@ -0,0 +1,15 @@ +name: Deploy DEV + +on: + workflow_dispatch: + inputs: + branch: + description: Branch to deploy + required: true + +jobs: + deploy_dev: + runs-on: ubuntu-latest + steps: + - name: Output + run: echo "===============> Would now start deploying AOE to DEV" \ No newline at end of file diff --git a/.github/workflows/deploy_prod.yml b/.github/workflows/deploy_prod.yml new file mode 100644 index 00000000..0376279d --- /dev/null +++ b/.github/workflows/deploy_prod.yml @@ -0,0 +1,15 @@ +name: Deploy PROD + +on: + workflow_dispatch: + inputs: + branch: + description: Branch to deploy + required: true + +jobs: + deploy_prod: + runs-on: ubuntu-latest + steps: + - name: Output + run: echo "===============> Would now start deploying AOE to PROD" \ No newline at end of file diff --git a/.github/workflows/deploy_qa.yml b/.github/workflows/deploy_qa.yml new file mode 100644 index 00000000..809e9403 --- /dev/null +++ b/.github/workflows/deploy_qa.yml @@ -0,0 +1,15 @@ +name: Deploy QA + +on: + workflow_dispatch: + inputs: + branch: + description: Branch to deploy + required: true + +jobs: + deploy_qa: + runs-on: ubuntu-latest + steps: + - name: Output + run: echo "===============> Would now start deploying AOE to QA" \ No newline at end of file