Skip to content

Commit 76dbabf

Browse files
authored
Create deploy.yml
1 parent eb35e6b commit 76dbabf

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
environment:
7+
required: true
8+
type: string
9+
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
17+
]
18+
- name: Terraform try
19+
run: echo "Deploying ${{ inputs.environment }}"

0 commit comments

Comments
 (0)