update #68
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: Deploy on Staging | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: SSH and Deploy | |
run: | | |
mkdir -p ~/.ssh/ | |
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
ssh-keyscan -t rsa ${{ secrets.HOST }} >> ~/.ssh/known_hosts | |
ssh -o StrictHostKeyChecking=no ${{ secrets.USERNAME }}@${{ secrets.HOST }} -p ${{ secrets.PORT }} -i ~/.ssh/id_rsa <<EOF | |
cd ~/IMS-Corp | |
git pull origin dev | |
exit | |
EOF | |
- name: Prepare Email | |
id: prepare_email | |
run: | | |
deployment_time="$(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} | |
mkdir -p ~/.ssh/ | |
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa | |
chmod 600 ~/.ssh/id_rsa | |
ssh-keyscan -t rsa ${{ secrets.HOST }} >> ~/.ssh/known_hosts | |
ssh -o StrictHostKeyChecking=no ${{ secrets.USERNAME }}@${{ secrets.HOST }} -p ${{ secrets.PORT }} -i ~/.ssh/id_rsa <<EOF | |
cd ~/IMS-Corp | |
mkdir -p emails // create emails folder if not exist | |
echo "::set-output name=content::$content" > emails/notify_deployment-staging.html | |
exit | |
EOF | |
- name: Send Email Notification | |
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-Corp Deployment on Staging" | |
body: ${{ steps.prepare_email.outputs.content }} | |
from: ${{ secrets.MAIL_SERVER_UID }} | |
to: ${{ secrets.MAIL_SERVER_UID }} | |
content_type: text/html | |
- name: Send Email | |
uses: Brahmware/Send-Notification@main | |
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-Corp Deployment on Staging" | |
body: "Deployment on Staging has been completed successfully." | |
from: ${{ secrets.MAIL_SERVER_UID }} | |
to: ${{ secrets.MAIL_SERVER_UID }} | |