Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -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"