CI #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
# schedule: | |
# - cron: '0 10 * * 0' | |
push: | |
branches: | |
- "**" | |
tags: | |
- "v*.*.*" | |
paths-ignore: | |
- "deployment/**" | |
- "azure-pipeline/**" | |
- ".github/**" | |
workflow_dispatch: | |
inputs: | |
env: | |
description: "Choose the environment" | |
required: true | |
default: "dev" | |
type: choice | |
options: | |
- "dev" | |
- "uat" | |
- "prod" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CONTAINER_IMAGE_REPO: "diquzart" | |
CONTAINER_IMAGE_NAME: "go-app" | |
jobs: | |
init: | |
runs-on: ubuntu-latest | |
env: | |
PROD_IMAGE_TAG_PREFIX: "prod" | |
UAT_IMAGE_TAG_PREFIX: "uat" | |
DEV_IMAGE_TAG_PREFIX: "dev" | |
outputs: | |
image_tag: ${{ steps.set-image-tag.outputs.IMAGE_TAG }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- name: Set image tag | |
id: set-image-tag | |
run: | | |
if [[ ${{ github.ref_type }} == "tag" ]]; then | |
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_OUTPUT | |
else | |
ENV=${{ github.event.inputs.env }} | |
TAG_PREFIX=$( | |
if [[ $ENV == "prod" ]]; then | |
echo ${{ env.PROD_IMAGE_TAG_PREFIX }} | |
elif [[ $ENV == "uat" ]]; then | |
echo ${{ env.UAT_IMAGE_TAG_PREFIX }} | |
else | |
echo ${{ env.DEV_IMAGE_TAG_PREFIX }} | |
fi | |
) | |
COMMIT_SHA=$(echo "${{ github.sha }}" | cut -c1-7) | |
echo "IMAGE_TAG=${TAG_PREFIX}-${COMMIT_SHA}" >> $GITHUB_OUTPUT | |
fi | |
build-and-push: | |
runs-on: ubuntu-latest | |
needs: init | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set metadata for the Container Image | |
uses: docker/metadata-action@v4 | |
id: image_metadata | |
with: | |
images: ${{ env.CONTAINER_IMAGE_REPO }}/${{ env.CONTAINER_IMAGE_NAME }} | |
tags: | | |
${{ needs.init.outputs.image_tag }} | |
- name: Login to Repository (Docker Hub) | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build Container image | |
run: | | |
docker build \ | |
--tag ${{ steps.image_metadata.outputs.tags }} \ | |
--file $CONTAINERFILE . | |
- name: Trivy Scan Container image | |
uses: aquasecurity/trivy-action@master | |
with: | |
image-ref: ${{ steps.image_metadata.outputs.tags }} | |
# exit-code: "1" | |
ignore-unfixed: true | |
vuln-type: "os,library" | |
severity: "CRITICAL,HIGH" | |
- name: Push Container Image | |
run: | | |
docker push ${{ steps.image_metadata.outputs.tags }} | |