Skip to content

chore(infrastructure): Create CI /CD v2 github workflow #2

chore(infrastructure): Create CI /CD v2 github workflow

chore(infrastructure): Create CI /CD v2 github workflow #2

Workflow file for this run

name: CI / CD v2
on:
push:
paths:
- "api/**"
- ".github/workflows/cicd.yml"
workflow_dispatch:
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and run tests
run: docker compose up --build --exit-code-from test test
- name: Clean up
run: docker compose down
# BUILD AND DEPLOY
set_environment:
runs-on: ubuntu-latest
name: Set Deployment Environment
if: ${{ github.event_name == 'workflow_dispatch' || github.ref_name == 'develop' || github.ref_name == 'main' }}
outputs:
env_name: ${{ steps.set_env.outputs.env_name }}
steps:
- id: set_env
# run: echo "env_name=${{ github.ref_name }}" >> $GITHUB_OUTPUT
run: echo "env_name=develop" >> $GITHUB_ENV
build_api:
name: build-api
needs: [ set_environment ]
environment:
name: ${{ needs.set_environment.outputs.env_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.TF_PIPELINE_USER_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.TF_PIPELINE_USER_SECRET_ACCESS_KEY }}
aws-region: ${{ vars.TF_AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
with:
mask-password: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build, tag, and push Client image to Amazon ECR
uses: docker/build-push-action@v5
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
file: ./api/Dockerfile
push: true
tags: |
${{ steps.login-ecr.outputs.registry }}/${{ secrets.TF_API_REPOSITORY_NAME }}:${{ github.sha }}
${{ steps.login-ecr.outputs.registry }}/${{ secrets.TF_API_REPOSITORY_NAME }}:${{ needs.set_environment.outputs.env_name }}
deploy:

Check failure on line 75 in .github/workflows/cicd v2.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cicd v2.yml

Invalid workflow file

You have an error in your yaml syntax on line 75
name: deploy
needs: [ build_api ]
runs-on: ubuntu-latest
environment:
name: ${{ needs.set_environment.outputs.env_name }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.TF_PIPELINE_USER_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.TF_PIPELINE_USER_SECRET_ACCESS_KEY }}
aws-region: ${{ vars.TF_AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Generate docker compose file
working-directory: infrastructure/source_bundle
env:
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY_API: ${{ secrets.TF_API_REPOSITORY_NAME }}
IMAGE_TAG: ${{ needs.set_environment.outputs.env_name }}
AUTH_TOKEN: ${{ secrets.TF_AUTH_TOKEN }}
TIFF_PATH: ${{ vars.TF_TIFF_PATH }}
run: |
cat <<EOF >> docker-compose.yml
version: '3.9'
services:
api:
image: $ECR_REGISTRY/$ECR_REPOSITORY_API:$IMAGE_TAG
ports:
- "8000:8000"
environment:
- AUTH_TOKEN=${AUTH_TOKEN}
- TIFF_PATH=${TIFF_PATH}
- GRID_TILES_PATH=${GRID_TILES_PATH}
volumes:
- ./data:/opt/api/data
networks:
- amazonia360-network
restart: always
networks:
amazonia360-network:
driver: bridge
EOF
- name: Generate .ebextensions/20_sync_data.config
working-directory: infrastructure/source_bundle
env:
PROJECT_NAME: ${{ vars.TF_PROJECT_NAME }}
ENV_NAME: ${{ needs.set_environment.outputs.env_name }}
AWS_REGION: ${{ vars.TF_AWS_REGION }}
run: |
mkdir -p .ebextensions
cat <<EOF > .ebextensions/20_sync_data.config
commands:
20_install_awscli:
command: |
sudo apt-get update -y
sudo apt-get install -y awscli
sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
21_create_data_folder:
command: mkdir -p /var/app/current/api/data
cwd: /home/ec2-user
22_sync_s3_bucket:
command: aws s3 sync s3://${PROJECT_NAME}-${ENV_NAME}-bucket /var/app/current/api/data
cwd: /home/ec2-user
env:
AWS_DEFAULT_REGION: ${AWS_REGION}
EOF
- name: Generate zip file
working-directory: infrastructure/source_bundle
run: |
zip -r deploy.zip * .[^.]*
- name: Deploy to Amazon EB
uses: einaregilsson/beanstalk-deploy@v21
with:
aws_access_key: ${{ secrets.TF_PIPELINE_USER_ACCESS_KEY_ID }}
aws_secret_key: ${{ secrets.TF_PIPELINE_USER_SECRET_ACCESS_KEY }}
application_name: ${{ vars.TF_PROJECT_NAME }}-${{ needs.set_environment.outputs.env_name }}
environment_name: ${{ vars.TF_PROJECT_NAME }}-${{ needs.set_environment.outputs.env_name }}-environment
region: ${{ vars.TF_AWS_REGION }}
version_label: ${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }}
deployment_package: infrastructure/source_bundle/deploy.zip
wait_for_deployment: true