From dddbbeb3a0c627cf60f9ddb0dc6464e2aa464c89 Mon Sep 17 00:00:00 2001 From: Grace Whitney Date: Thu, 14 May 2026 18:17:38 -0400 Subject: [PATCH] Add deploy action stub --- .github/workflows/build_and_deploy.yml | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/build_and_deploy.yml diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml new file mode 100644 index 0000000..ddddf41 --- /dev/null +++ b/.github/workflows/build_and_deploy.yml @@ -0,0 +1,27 @@ +name: Build and deploy application +run-name: Deploy to ${{ inputs.environment }} + +on: + workflow_dispatch: + inputs: + environment: + type: choice + description: environment to deploy to + default: staging + options: + - staging + skip_migration: + description: skip migrating data? + type: boolean + default: false +jobs: + container-job: + name: Build and deploy application + environment: ${{ inputs.environment }} + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [3.11] + steps: + - name: Placeholder + - run: echo "Hello" \ No newline at end of file