All checks were successful
Blog Deployment / check-rebuild (push) Successful in 5s
Blog Deployment / build (push) Has been skipped
Blog Deployment / deploy-staging (push) Successful in 9s
Blog Deployment / test-staging (push) Successful in 3s
Blog Deployment / merge (push) Successful in 5s
Blog Deployment / deploy-production (push) Successful in 9s
Blog Deployment / test-production (push) Successful in 2s
Blog Deployment / clean (push) Has been skipped
191 lines
5.6 KiB
YAML
191 lines
5.6 KiB
YAML
name: Blog Deployment
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- preview
|
|
|
|
env:
|
|
DOCKER_IMAGE: vezpi-blog
|
|
|
|
jobs:
|
|
check-rebuild:
|
|
runs-on: docker
|
|
defaults:
|
|
run:
|
|
shell: sh
|
|
outputs:
|
|
latest_hugo_version: ${{ steps.get_latest.outputs.version }}
|
|
current_hugo_version: ${{ steps.get_current.outputs.version }}
|
|
newer_version_available: ${{ steps.compare.outputs.version }}
|
|
docker_folder_changed: ${{ steps.docker_folder.outputs.changed }}
|
|
steps:
|
|
- name: Checkout Repository
|
|
run: git clone --branch preview https://${{ secrets.REPO_TOKEN }}@git.vezpi.me/Vezpi/blog.git .
|
|
|
|
- name: Check Latest Hugo Version
|
|
id: get_latest
|
|
run: |
|
|
apk add curl
|
|
latest_version=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep tag_name | sed -E 's/.*"v([^"]+)".*/\1/')
|
|
echo "version=$latest_version" | tee -a $GITEA_OUTPUT
|
|
|
|
- name: Check Current Hugo Version
|
|
id: get_current
|
|
run: |
|
|
current_version=$(docker image ls ${DOCKER_IMAGE} --format '{{.Tag}}' | head -n1)
|
|
echo "version=$current_version" | tee -a $GITEA_OUTPUT
|
|
|
|
- name: Compare Current and Latest Hugo Versions
|
|
id: compare
|
|
run: |
|
|
if [ "${{ steps.get_latest.outputs.version }}" != "${{ steps.get_current.outputs.version }}" ]; then
|
|
new_version_available=true
|
|
echo "New version available: ${{ steps.get_latest.outputs.version }}"
|
|
else
|
|
new_version_available=false
|
|
echo "Current version is the latest: ${{ steps.get_latest.outputs.version }}"
|
|
fi
|
|
echo "version=$new_version_available" | tee -a $GITEA_OUTPUT
|
|
|
|
- name: Check Changes in the Docker Folder
|
|
id: docker_folder
|
|
run: |
|
|
if git diff --name-only origin/main | grep -q '^docker/';
|
|
then
|
|
docker_folder_changed=true
|
|
echo "Change detected in the /docker folder"
|
|
else
|
|
docker_folder_changed=false
|
|
echo "No change in the /docker folder"
|
|
fi
|
|
echo "changed=$docker_folder_changed" | tee -a $GITEA_OUTPUT
|
|
|
|
build:
|
|
needs: check-rebuild
|
|
if: needs.check-rebuild.outputs.newer_version_available == 'true' || needs.check-rebuild.outputs.docker_folder_changed == 'true'
|
|
runs-on: docker
|
|
defaults:
|
|
run:
|
|
shell: sh
|
|
steps:
|
|
- name: Checkout Repository
|
|
run: git clone --branch preview https://${{ secrets.REPO_TOKEN }}@git.vezpi.me/Vezpi/blog.git .
|
|
|
|
- name: Build Docker Image
|
|
run: |
|
|
cd docker
|
|
docker build \
|
|
--build-arg HUGO_VERSION=${{ needs.check-rebuild.outputs.latest_hugo_version }} \
|
|
--tag ${DOCKER_IMAGE}:${{ needs.check-rebuild.outputs.latest_hugo_version }} \
|
|
.
|
|
docker tag ${DOCKER_IMAGE}:${{ needs.check-rebuild.outputs.latest_hugo_version }} ${DOCKER_IMAGE}:latest
|
|
|
|
deploy-staging:
|
|
needs:
|
|
- check-rebuild
|
|
- build
|
|
if: always() && needs.check-rebuild.result == 'success' && (needs.build.result == 'skipped' || needs.build.result == 'success')
|
|
runs-on: docker
|
|
container:
|
|
volumes:
|
|
- /appli/docker/blog:/blog
|
|
defaults:
|
|
run:
|
|
shell: sh
|
|
env:
|
|
CONTAINER_NAME: blog_staging
|
|
steps:
|
|
- name: Launch Blog Deployment
|
|
run: |
|
|
cd /blog
|
|
docker compose down ${CONTAINER_NAME}
|
|
docker compose up -d ${CONTAINER_NAME}
|
|
sleep 5
|
|
echo "- Displaying container logs"
|
|
docker compose logs ${CONTAINER_NAME}
|
|
|
|
test-staging:
|
|
needs: deploy-staging
|
|
runs-on: ubuntu
|
|
env:
|
|
URL: "https://blog-dev.vezpi.com/en/"
|
|
steps:
|
|
- name: Check HTTP Response
|
|
run: |
|
|
code=$(curl -s -o /dev/null -w "%{http_code}" "$URL")
|
|
echo "HTTP response code: $code"
|
|
|
|
if [ "$code" -ne 200 ]; then
|
|
echo "❌ Service is not healthy (HTTP $code)"
|
|
exit 1
|
|
else
|
|
echo "✅ Service is healthy"
|
|
fi
|
|
|
|
merge:
|
|
needs: test-staging
|
|
runs-on: ubuntu
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: main
|
|
|
|
- name: Merge preview Branch on main
|
|
run: |
|
|
git merge --ff-only origin/preview
|
|
git push origin main
|
|
|
|
deploy-production:
|
|
needs: merge
|
|
runs-on: docker
|
|
container:
|
|
volumes:
|
|
- /appli/docker/blog:/blog
|
|
defaults:
|
|
run:
|
|
shell: sh
|
|
env:
|
|
CONTAINER_NAME: blog_production
|
|
steps:
|
|
- name: Launch Blog Deployment
|
|
run: |
|
|
cd /blog
|
|
docker compose down ${CONTAINER_NAME}
|
|
docker compose up -d ${CONTAINER_NAME}
|
|
sleep 5
|
|
echo "- Displaying container logs"
|
|
docker compose logs ${CONTAINER_NAME}
|
|
|
|
test-production:
|
|
needs: deploy-production
|
|
runs-on: ubuntu
|
|
env:
|
|
URL: "https://blog.vezpi.com/en/"
|
|
steps:
|
|
- name: Check HTTP Response
|
|
run: |
|
|
code=$(curl -s -o /dev/null -w "%{http_code}" "$URL")
|
|
echo "HTTP response code: $code"
|
|
|
|
if [ "$code" -ne 200 ]; then
|
|
echo "❌ Service is not healthy (HTTP $code)"
|
|
exit 1
|
|
else
|
|
echo "✅ Service is healthy"
|
|
fi
|
|
|
|
clean:
|
|
needs:
|
|
- check-rebuild
|
|
- build
|
|
- test-production
|
|
runs-on: docker
|
|
defaults:
|
|
run:
|
|
shell: sh
|
|
steps:
|
|
- name: Checkout Repository
|
|
run: docker image rm vezpi-blog:${{ needs.check-rebuild.outputs.current_hugo_version }} --force |