Skip to content

Commit

Permalink
feat: add build contact service github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladivo committed Aug 23, 2024
1 parent 2e5cc0b commit 3327e03
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/build-contact-service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: "[Build] contact-service docker image"

permissions:
packages: write
contents: write
id-token: write

on:
workflow_dispatch:
inputs:
env:
description: "Environment to build"
required: true
type: choice
options:
- prod
- stage
- dev

jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::570620554963:role/github_actions_ecr_vexl
role-session-name: GithubActionsCloudInfrastructure
aws-region: eu-west-1

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

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push image
uses: docker/build-push-action@v5
with:
context: .
file: ./apps/contact-service/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
provenance: false
tags: |
ghcr.io/vexl-it/contact-ms:latest
ghcr.io/vexl-it/contact-ms:${{inputs.env}}-${{ github.sha }}
${{ steps.login-ecr.outputs.registry }}/contact-ms:${{inputs.env}}-${{ github.sha }}
build-args: |
SERVICE_VERSION=${{ github.sha }}
ENVIRONMENT=${{ inputs.env }}

0 comments on commit 3327e03

Please sign in to comment.