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