github actions test #4
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: CI/CD | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Build Project | |
run: ./gradlew build -x test | |
- name: Login to Docker Hub | |
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build Docker Image | |
run: docker build -t madurad/springboot-example . | |
- name: Publish Image to Docker Hub | |
run: docker push madurad/springboot-example:latest | |
deploy: | |
needs: build | |
runs-on: ip-172-31-8-60 | |
steps: | |
- name: Pull Image from Docker Hub | |
run: docker pull madurad/springboot-example:latest | |
- name: Delete Old Container | |
run: docker rm -f springboot-example-container || true | |
- name: Run Docker Container | |
run: docker run -d -p 8080:8080 --name springboot-example-container madurad/springboot-example |