Merge pull request #188 from SPACE-FOR-SPACE/feat/#187 #108
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: Java CI&CD with Gradle | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Create BadWords.txt | |
run: | | |
echo "${{ secrets.BAD_WORDS }}" > src/main/resources/BadWords.txt | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew clean build | |
env: | |
PORT: ${{ secrets.PORT }} | |
- name: Login to DockerHub | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and Push Docker | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/live_server:latest | |
deploy: | |
needs: build | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set target IP | |
run: | | |
STATUS=$(curl -o /dev/null -w "%{http_code}" "https://${{ secrets.LIVE_SERVER_DOMAIN }}/api/env") | |
echo $STATUS | |
if [ $STATUS = 200 ]; then | |
CURRENT_UPSTREAM=$(curl -s "https://${{ secrets.LIVE_SERVER_DOMAIN }}/api/env") | |
else | |
CURRENT_UPSTREAM=green | |
fi | |
echo CURRENT_UPSTREAM=$CURRENT_UPSTREAM >> $GITHUB_ENV | |
if [ $CURRENT_UPSTREAM = blue ]; then | |
echo "CURRENT_PORT=8080" >> $GITHUB_ENV | |
echo "STOPPED_PORT=8081" >> $GITHUB_ENV | |
echo "TARGET_UPSTREAM=green" >> $GITHUB_ENV | |
else | |
echo "CURRENT_PORT=8081" >> $GITHUB_ENV | |
echo "STOPPED_PORT=8080" >> $GITHUB_ENV | |
echo "TARGET_UPSTREAM=blue" >> $GITHUB_ENV | |
fi | |
- name: Docker compose | |
uses: appleboy/ssh-action@master | |
with: | |
username: ubuntu | |
host: ${{ secrets.LIVE_SERVER_IP }} | |
key: ${{ secrets.EC2_SSH_KEY }} | |
script_stop: true | |
script: | | |
sudo docker pull ${{ secrets.DOCKERHUB_USERNAME }}/live_server:latest | |
sudo docker-compose -f docker-compose-${{env.TARGET_UPSTREAM}}.yml up -d | |
- name: Check deploy server URL | |
uses: jtalk/url-health-check-action@v3 | |
with: | |
url: http://${{ secrets.LIVE_SERVER_IP }}:${{env.STOPPED_PORT}}/env | |
max-attempts: 4 | |
retry-delay: 10s | |
- name: Change nginx upstream | |
uses: appleboy/ssh-action@master | |
with: | |
username: ubuntu | |
host: ${{ secrets.LIVE_SERVER_IP }} | |
key: ${{ secrets.EC2_SSH_KEY }} | |
script_stop: true | |
script: | | |
sudo docker exec -i nginxserver bash -c 'echo "set \$service_url ${{ env.TARGET_UPSTREAM }};" > /etc/nginx/conf.d/service-env.inc && nginx -s reload' | |
- name: Stop current server | |
uses: appleboy/ssh-action@master | |
with: | |
username: ubuntu | |
host: ${{ secrets.LIVE_SERVER_IP }} | |
key: ${{ secrets.EC2_SSH_KEY }} | |
script_stop: true | |
script: | | |
sudo docker stop ${{env.CURRENT_UPSTREAM}} | |
sudo docker rm ${{env.CURRENT_UPSTREAM}} |