Merge pull request #165 from JNU-econovation/fix/fe-build #148
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
name: overflow CI/CD | |
on: | |
push: | |
branches: [ "develop","be" ] | |
pull_request: | |
branches: [ "develop","be" ] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
## jdk setting | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
# gradle setting | |
- name: init with Gradle | |
uses: gradle/gradle-build-action@v2 | |
- run: gradle init | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: 7.5.1 | |
arguments: build | |
## gradle build | |
- name: Build with Gradle | |
working-directory: ./be/overflow | |
run: ./gradlew build -x test | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
with: | |
version: v0.7.0 | |
## docker build & push to develop | |
- name: Docker build & push to dev | |
working-directory: ./be/overflow | |
if: contains(github.ref, 'develop') | |
run: | | |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | |
docker build -t ${{ secrets.DOCKER_REPO }}/ecnv-overflow . | |
docker push ${{ secrets.DOCKER_REPO }}/ecnv-overflow | |
## deploy to develop | |
- name: Deploy to dev | |
uses: appleboy/ssh-action@master | |
id: deploy-dev | |
if: contains(github.ref, 'develop') | |
with: | |
host: ${{ secrets.HOST_DEV }} | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
port: 22 | |
working-directory: ./be/overflow | |
script: | | |
sudo usermod -a -G docker $USER | |
sudo docker pull ${{ secrets.DOCKER_REPO }}/ecnv-overflow | |
docker-compose up -d | |
docker image prune -f | |
## time | |
current-time: | |
# needs: CI-CD | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Current Time | |
uses: 1466587594/get-current-time@v2 | |
id: current-time | |
with: | |
format: YYYY-MM-DDTHH:mm:ss | |
# utcOffset: "+09:00" # 기준이 UTC이기 때문에 한국시간인 KST를 맞추기 위해 +9시간 추가 | |
script: | | |
sudo timedatectl set-timezone Asia/Seoul | |
- name: Print Current Time | |
run: echo "Current Time=${{steps.current-time.outputs.formattedTime}}" # current-time 에서 지정한 포맷대로 현재 시간 출력 | |
shell: bash |