https://github.com/softprops/setup-aws-copilot
👩✈️ A GitHub Action for setting up and configuring the AWS Copilot command line interface
https://github.com/softprops/setup-aws-copilot
Last synced: about 1 year ago
JSON representation
👩✈️ A GitHub Action for setting up and configuring the AWS Copilot command line interface
- Host: GitHub
- URL: https://github.com/softprops/setup-aws-copilot
- Owner: softprops
- License: mit
- Created: 2020-08-11T04:24:36.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-02-15T15:57:58.000Z (over 2 years ago)
- Last Synced: 2025-03-17T12:00:02.795Z (over 1 year ago)
- Language: TypeScript
- Size: 153 KB
- Stars: 26
- Watchers: 4
- Forks: 19
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup AWS Copilot
> 👩✈️A GitHub Action for setting up the [AWS Copilot command line interface](https://github.com/aws/copilot-cli)
## usage
Add a step to your workflow to install AWS Copilot
```yml
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup AWS Copilot
uses: softprops/setup-aws-copilot@v1
```
#### inputs
| Name | Type | Description |
|-------------|---------|-----------------------------------------------------------------|
| `version` | string | version of [Copilot cli release](https://github.com/aws/copilot-cli/releases) defaults to latest version |
Doug Tangren (softprops) 2020.