Skip to content

Commit

Permalink
Ci cd (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggera authored Jan 8, 2024
1 parent 6349417 commit f7b0d88
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/dev-ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
on:
workflow_dispatch:
types: [ created ]
push:
branches:
- main

name: Dev deployment

jobs:
deploy:
name: Build image and push to Amazon ECR
runs-on: ubuntu-latest
environment: dev

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
with:
mask-password: 'true'
- name: Build image
run: |
docker build -t dena-attester:latest .
- name: Tag, and push image to Amazon ECR
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: dena/attester
IMAGE_TAG: ${{ github.sha }}
run: |
docker tag dena-attester $ECR_REGISTRY/$ECR_REPOSITORY:latest
docker tag dena-attester $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest
- name: Deploy to kilt cluster
uses: kodermax/kubectl-aws-eks@master
env:
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG }}
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: dena/attester
IMAGE_TAG: ${{ github.sha }}

with:
args: rollout restart deployment dena-attester -n dena-attester-dev

0 comments on commit f7b0d88

Please sign in to comment.