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 c043b2c commit 55faa94Copy full SHA for 55faa94
.github/workflows/redeploy-ecs-service.yml
@@ -17,10 +17,12 @@ jobs:
17
redeploy:
18
name: Redeploy ECS Service
19
runs-on: ubuntu-latest
20
+ environment:
21
+ name: AWS
22
23
steps:
24
- name: Checkout code
- uses: actions/checkout@v2
25
+ uses: actions/checkout@v3
26
27
- name: Setup AWS CLI
28
uses: aws-actions/configure-aws-credentials@v4
@@ -31,3 +33,4 @@ jobs:
31
33
32
34
- name: Force new Deployment on ECS Service
35
run: aws ecs update-service --region ${{ inputs.aws_region }} --cluster ${{ inputs.cluster_name }} --service ${{ inputs.service_name }} --force-new-deployment
36
+# Nice to have: set environment url using step output + link2aws
0 commit comments