Skip to content

Update est-frontend-dev.yml #13

Update est-frontend-dev.yml

Update est-frontend-dev.yml #13

name: Deploy Frontend
on:
push:
branches:
- dev
jobs:
deploy:
runs-on: [self-hosted, dev]
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
clean: true
- name: Remove all running containers, images, and prune Docker system
run: |
docker stop $(docker ps -a -q) || true
docker rm $(docker ps -a -q) || true
images_to_keep="authentication-layer|tim|data-mapper|resql|ruuter"
docker images --format "{{.Repository}}:{{.Tag}}" | grep -Ev "$images_to_keep" | xargs -r docker rmi || true
docker volume prune -f
docker network prune -f
- name: Build and run Docker Compose
run: |
docker compose up --build -d
- name: Get public IP address
id: get_ip
run: |
PUBLIC_IP=$(curl -s http://checkip.amazonaws.com)
echo "PUBLIC_IP=$PUBLIC_IP" >> $GITHUB_ENV
- name: Send Slack notification
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
PUBLIC_IP: ${{ env.PUBLIC_IP }}
run: |
curl -X POST -H 'Content-type: application/json' --data "{
\"text\": \"Build is complete. You can access it with Public IP: $PUBLIC_IP\"
}" $SLACK_WEBHOOK_URL