Skip to content

Commit ef8f998

Browse files
committed
#35 added workflow for aws-eks-utils
1 parent 5443a11 commit ef8f998

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 'aws-eks-utils'
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
paths:
8+
- 'feature/terraform-utils'
9+
10+
jobs:
11+
push_to_registries:
12+
name: Build and Push Docker image
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Check out the repo
16+
uses: actions/checkout@v2
17+
- name: Login to DockerHub
18+
uses: docker/login-action@v1
19+
with:
20+
username: ${{ secrets.DOCKER_USERNAME }}
21+
password: ${{ secrets.DOCKER_PASSWORD }}
22+
- name: Build and Push
23+
uses: docker/build-push-action@v2
24+
with:
25+
push: true
26+
context: docker/aws-eks-utils/
27+
tags: maddevsio/aws-eks-utils:latest

0 commit comments

Comments
 (0)