Skip to content

Commit 476818d

Browse files
committed
chore: add dummy v2 sar deploy job
1 parent 11b6afd commit 476818d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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+
required: true
13+
type: string
14+
package-version:
15+
description: "The version of the package to deploy"
16+
required: true
17+
type: string
18+
environment:
19+
description: "GitHub Environment to use for encrypted secrets"
20+
required: true
21+
type: string
22+
23+
jobs:
24+
dummy:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- name: Hello world
28+
run: echo "hello world"

0 commit comments

Comments
 (0)