We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b6afd commit 476818dCopy full SHA for 476818d
.github/workflows/reusable_deploy_v2_sar.yml
@@ -0,0 +1,28 @@
1
+name: Deploy V2 SAR
2
+
3
+on:
4
+ workflow_call:
5
+ inputs:
6
+ stage:
7
+ description: "Deployment stage (BETA, PROD)"
8
+ required: true
9
+ type: string
10
+ artefact-name:
11
+ description: "CDK Layer Artefact name to download"
12
13
14
+ package-version:
15
+ description: "The version of the package to deploy"
16
17
18
+ environment:
19
+ description: "GitHub Environment to use for encrypted secrets"
20
21
22
23
+jobs:
24
+ dummy:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - name: Hello world
28
+ run: echo "hello world"
0 commit comments