generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (36 loc) · 887 Bytes
/
test.yml
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
39
40
---
name: Deploy Test
on:
workflow_dispatch:
inputs:
tag:
description: "Image tag to deploy"
required: false
type: string
default: "test"
workflow_run:
inputs:
tag:
description: "Image tag to deploy"
required: false
type: string
default: "test"
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
deploy-test:
name: Deploys (test)
uses: ./.github/workflows/deploy.yml
secrets: inherit
with:
autoscaling: true
environment: test
release: test
tag: ${{ inputs.tag }}
params: |
--set-string global.license='c28f0c' \
--set-string global.zone='test' \
--set-string global.vault.role='nonprod' \
--set-string global.vault.zone='test' \
--set-string global.pr_num='${{ inputs.tag }}' \