Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ This repo contains the github actions for installing [AWS Copilot cli](https://g
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::111111111111:role/my-github-actions-role-test
aws-region: us-east-1
Expand All @@ -29,9 +29,9 @@ This repo contains the github actions for installing [AWS Copilot cli](https://g
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::111111111111:role/my-github-actions-role-test
aws-region: us-east-1
Expand Down Expand Up @@ -75,3 +75,17 @@ In the with attribute, the tag value can be used to define the tag image name
env: prod
tag: image-name
```
### Version

In the with attribute, the version value can be used to define the copilot version

```
deploy:
steps:
- uses: ksivamuthu/[email protected]
with:
command: deploy
app: your-awesome-app
env: prod
version: v1.33.0
```