Skip to content

Workflow file for this run

name: Deploy on Staging
on:
push:
branches:
- development
jobs:
staging:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: SSH and Cleanup
run: |
echo "Setting up Git Config"
mkdir -p ~/.ssh/
echo "Setting up SSH Keys"
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -t rsa ${{ secrets.HOST }} >> ~/.ssh/known_hosts
echo "SSH Keys Setup Completed"
echo "SSHing into Staging Server"
ssh -o StrictHostKeyChecking=no ${{ secrets.USERNAME }}@${{ secrets.HOST }} -p ${{ secrets.PORT }} -i ~/.ssh/id_rsa <<'EOF'
# Change to the project directory
cd ~/ims-website
# Calculate Docker cache size in bytes
CACHE_SIZE=$(docker images --filter "dangling=true" -q --no-trunc | xargs -r docker inspect --format='{{.Size}}' | awk '{s+=$1} END {print s}')
# Convert 40MB to bytes (40 * 1024 * 1024)
CACHE_LIMIT=41943040
# Check if cache size exceeds the limit and prune if necessary
if [ "$CACHE_SIZE" -gt "$CACHE_LIMIT" ]; then
echo "Cache size exceeded 40MB. Cleaning..."
docker system prune -af
else
echo "Cache size is within limit."
fi
# Calculate Docker images size in bytes
IMAGES_SIZE=$(docker images -q --no-trunc | xargs -r docker inspect --format='{{.Size}}' | awk '{s+=$1} END {print s}')
# Convert 3GB to bytes (3 * 1024 * 1024 * 1024)
IMAGES_LIMIT=3073741824
# Check if image size exceeds the limit and delete oldest images if necessary
if [ "$IMAGES_SIZE" -gt "$IMAGES_LIMIT" ]; then
echo "Images size exceeded 3GB, i.e. $(echo "scale=2; $IMAGES_SIZE / 1024 / 1024 / 1024" | bc) GB. Deleting oldest images until size is below limit..."
for img in $(docker images --format '{{.ID}} {{.CreatedAt}}' | sort -k2 | awk '{print $1}'); do
docker rmi $img
IMAGES_SIZE=$(docker images -q --no-trunc | xargs -r docker inspect --format='{{.Size}}' | awk '{s+=$1} END {print s}')
echo "Images size is now $IMAGES_SIZE"
if [ "$IMAGES_SIZE" -le "$IMAGES_LIMIT" ]; then
break
fi
done
else
echo "Images size is within limit."
fi
# Continue with your existing deployment steps
git pull origin development
docker compose build
docker compose up -d
exit
EOF
echo "Deployment and Cleanup on Staging Server Completed"
- name: Gathering Email and Mail List
id: prepare_email
run: |
deployment_time=$(TZ=Asia/Kolkata date)
git fetch --unshallow
last_commit_hash=$(git rev-parse HEAD)
author_name=$(git log -1 --format='%an')
author_email=$(git log -1 --format='%ae')
branch_name=$(git rev-parse --abbrev-ref HEAD)
commit_message=$(git log -1 --pretty=%B)
files_changed=$(git diff-tree --no-commit-id --name-only -r $last_commit_hash)
template_path="./templates/email/notify_deployment-staging.html"
content=$(cat $template_path)
content=${content//DEPLOYMENT_TIME/$deployment_time}
content=${content//AUTHOR_NAME/$author_name}
content=${content//AUTHOR_EMAIL/$author_email}
content=${content//BRANCH_NAME/$branch_name}
content=${content//COMMIT_MESSAGE/$commit_message}
content=${content//FILES_CHANGED/$files_changed}
ssh -o StrictHostKeyChecking=no ${{ secrets.USERNAME }}@${{ secrets.HOST }} -p ${{ secrets.PORT }} -i ~/.ssh/id_rsa <<EOF
cd ~/ims-website
mkdir -p emails
echo "$content" > emails/notify_deployment-staging.html
exit
EOF
emailPath="email.html"
echo "::add-mask::$emailPath"
emailListPath="mail_list.csv"
echo "::add-mask::$emailListPath"
scp -P ${{ secrets.PORT }} -i ~/.ssh/id_rsa ${{ secrets.USERNAME }}@${{ secrets.HOST }}:~/ims-website/emails/notify_deployment-staging.html ./$emailPath
echo "::set-output name=emailPath::$emailPath"
scp -P ${{ secrets.PORT }} -i ~/.ssh/id_rsa ${{ secrets.USERNAME }}@${{ secrets.HOST }}:~/ims-website/mail_list.csv ./$emailListPath
mail_list=$(cat $emailListPath)
echo "::add-mask::$mail_list"
echo "::set-output name=mail_list::$mail_list"
echo "Email Prepared"
- name: Send Email
uses: dawidd6/action-send-mail@v2
with:
server_address: ${{ secrets.MAIL_SERVER_ADDRESS }}
server_port: ${{ secrets.MAIL_SERVER_PORT }}
username: ${{ secrets.MAIL_SERVER_UID }}
password: ${{ secrets.MAIL_SERVER_PASS }}
subject: IMS Corporate website Deployment on Staging Server | ${{ github.repository }}
body: file://${{ steps.prepare_email.outputs.emailPath }}
content_type: text/html
from: Github | Brahmware <${{ secrets.MAIL_SERVER_UID }}>
to: ${{ secrets.LEAD_NAME }} <${{ secrets.LEAD_EMAIL }}>
bcc: ${{ steps.prepare_email.outputs.mail_list }}