-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 769 Bytes
/
deploy.yml
File metadata and controls
35 lines (30 loc) · 769 Bytes
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
name: App containers manual deployment
on:
workflow_dispatch:
inputs:
imageTag:
description: Image tag to deploy
required: true
environment:
type: choice
description: Environment
options:
- dev
- prod
app_component:
type: choice
description: Component
options:
- api
- ui
jobs:
deployment:
runs-on: ubuntu-latest
environment: ${{ inputs.environment }}
steps:
- name: Set up atool component
run: |
echo "Deploymend triggered for:"
echo "imageTag: ${{ inputs.imageTag }}"
echo "environment: ${{ inputs.environment }}"
echo "app_component: ${{ inputs.app_component }}"