https://github.com/jsmrcaga/action-update-aws-taskdef
A simple composite action to update & deploy a new task definition
https://github.com/jsmrcaga/action-update-aws-taskdef
aws
Last synced: 11 months ago
JSON representation
A simple composite action to update & deploy a new task definition
- Host: GitHub
- URL: https://github.com/jsmrcaga/action-update-aws-taskdef
- Owner: jsmrcaga
- Created: 2022-09-24T21:07:19.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-24T21:39:59.000Z (almost 4 years ago)
- Last Synced: 2025-07-06T18:05:33.177Z (about 1 year ago)
- Topics: aws
- Language: HCL
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Update AWS Task Definition
This is a very simple composite action that
* downloads the current version of a task definition
* updates the image
* deploys a new version of the task def
### Usage
```yaml
jobs:
update_my_app:
runs-on: ubuntu-latest
steps:
- run: |
docker build -t myimage:latest .
docker push my_repo
- uses: jsmrcaga/action-update-aws-taskdef@v0.0.3
with:
image: myimage:latest
family: mytaskdef
service: myservice
cluster: mycluster
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
```