-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (36 loc) · 1.02 KB
/
cd-app-flask.yml
File metadata and controls
38 lines (36 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Deploy app-flask
# Need to set a default value for when the workflow is triggered from a git push
# which bypasses the default configuration for inputs
run-name: Deploy ${{inputs.version || 'main' }} to app-flask ${{ inputs.environment || 'dev' }}
on:
push:
branches:
- "main"
paths:
- "app-flask/**"
- "bin/**"
- "infra/**"
workflow_dispatch:
inputs:
environment:
description: Environment to deploy to
required: true
default: "dev"
type: choice
options:
- dev
- staging
- prod
version:
required: true
default: "main"
description: Tag or branch or SHA to deploy
jobs:
deploy:
name: " " # GitHub UI is noisy when calling reusable workflows, so use whitespace for name to reduce noise
uses: ./.github/workflows/deploy.yml
with:
app_name: "app-flask"
environment: ${{ inputs.environment || 'dev' }}
version: ${{ inputs.version || 'main' }}
secrets: inherit