Skip to content

Commit

Permalink
feat: Github Action ECR Deployment Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lim-Changi committed Mar 17, 2024
1 parent 1699bb4 commit 233ac99
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
51 changes: 51 additions & 0 deletions .github/workflows/eks-deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Deploy EKS
on:
push:
branches:
- deploy/k8s

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: ${{ secrets.AWS_REGION }}

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1

- name: Build, tag, and push image to Amazon ECR
id: build-image
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY: ${{ secrets.AWS_ECR_REPO }}
IMAGE_TAG: ${{ github.sha }}
NODE_ENV: development
PORT: ${{ secrets.PORT }}
SWAGGER_ADMIN: ${{ secrets.SWAGGER_ADMIN }}
SWAGGER_PASSWORD: ${{ secrets.SWAGGER_PASSWORD }}
DB_HOST: ${{ secrets.DB_HOST }}
DB_PORT: ${{ secrets.DB_PORT }}
DB_NAME: ${{ secrets.DB_NAME }}
DB_USERNAME: ${{ secrets.DB_USERNAME }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
SYNCHRONIZE: ${{ secrets.SYNCHRONIZE }}
LOGGING: ${{ secrets.LOGGING }}
DB_CONNECTION_TIMEOUT: ${{ secrets.DB_CONNECTION_TIMEOUT }}
JWT_SECRET_KEY: ${{ secrets.JWT_SECRET_KEY }}

run: |
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG"
- name: Success
run: echo deployed successfully.
2 changes: 1 addition & 1 deletion .github/workflows/production-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy Beanstalk Docker
on:
push:
branches:
- main
- main/temp_deprecated

jobs:
build:
Expand Down

0 comments on commit 233ac99

Please sign in to comment.