Skip to content

Commit a121a5a

Browse files
authored
Merge pull request #6 from byu-oit/test-fancy-case
Test the new fancy case introduced in #5
2 parents a816e4d + 9a6b3a7 commit a121a5a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,23 @@ jobs:
2222
uses: ./
2323
with:
2424
DOCKER_REPO_NAME: test-repo
25+
test-fancy-case:
26+
name: Test the Fancy Case
27+
runs-on: ubuntu-latest
28+
steps:
29+
- uses: actions/checkout@v1
30+
- name: Configure AWS credentials
31+
uses: aws-actions/configure-aws-credentials@v1
32+
with:
33+
aws-access-key-id: ${{ secrets.byu_oit_terraform_dev_key }}
34+
aws-secret-access-key: ${{ secrets.byu_oit_terraform_dev_secret }}
35+
aws-region: us-west-2
36+
- name: Log into Amazon ECR
37+
uses: aws-actions/amazon-ecr-login@v1
38+
- name: Create ECR repo if missing
39+
uses: ./
40+
with:
41+
DOCKER_REPO_NAME: test-repo-fancy
42+
NUM_DAYS_BEFORE_EXPIRING_UNTAGGED_IMAGES: 14
43+
TAG_PREFIX: 'dev-v'
44+
NUM_TAGGED_IMAGES_TO_RETAIN: 5

0 commit comments

Comments
 (0)