From 5b3bb5eb933d74ffc365ff27e50af4ea5c9ae7a6 Mon Sep 17 00:00:00 2001 From: Daniel Sarfati Date: Fri, 3 May 2024 12:01:46 -0600 Subject: [PATCH] Added AWS ECR --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c2aa6a9..d5471a3 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Place the following in step in your github actions ```yml - name: Deploy Update to SCE - uses: SaladTechnologies/sce-deploy@v0.1.0 + uses: SaladTechnologies/sce-deploy@v0.1.1 with: salad_organization: salad_project: @@ -55,3 +55,20 @@ To add a `secret` go to the `Settings` tab in your project then select | `salad_container_group` | Yes | `my-container-group` | The Salad container group name. Can be found in the portal url bar | | `salad_api_key` | Yes | `********` | The Salad API key | | `image_name` | Yes | `ghcr.io/my-container:0.1` | The full image name, including registry, image name and tag | +| `aws_access_key_id` | NO | `********` | The AWS ECR Access key | +| `aws_secret_access_key` | NO | `********` | The AWS Secret Access Key associated with the Access Key Id | + +## AWS ECR + +```yml + - name: Deploy Update to SCE + uses: SaladTechnologies/sce-deploy@v0.1.1 + with: + salad_organization: + salad_project: + salad_container_group: + salad_api_key: ${{secrets.SALAD_API_KEY}} + image_name: + aws_access_key_id: ${{secrets.AWS_ACCESS_KEY_ID}} + aws_secret_access_key: ${{secrets.AWS_SECRET_ACCESS_KEY}} +```