Skip to content

Commit

Permalink
[BSVR-27] 개발환경 CICD ver.4 (#30)
Browse files Browse the repository at this point in the history
* feat: gitignore에 .env 추가

* feat: application-jpa sql init mode 항목 always->never

* feat: 개발환경 db 세팅 값을 cloud db for mysql로 변경

* feat: 개발환경 cicd 스크립트 작성

* feat: 개발용 main 브랜치 ci 스크립트 재작성

* fix: 트리거에서 개발서버 배포담당인 dev브랜치 제외

* fix: 개발환경 작업 스크립트 통합

* feat: 배포용 도커파일 추가

* fix: ssh 포트번호 설정 추가

* fix: push할 때 도커 이미지 태그와 실행 단계에서 이미지 태그가 다른 것 수정
  • Loading branch information
pminsung12 authored Jul 16, 2024
1 parent e4b8ea3 commit ba5bfad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dev-cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ jobs:
deploy:
needs: build-and-test
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'

runs-on: ubuntu-latest

steps:
Expand All @@ -94,7 +93,7 @@ jobs:
with:
context: .
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/spot-server:${{ github.sha }}
tags: ${{ secrets.DOCKERHUB_USERNAME }}/spot-server:dev:${{ github.sha }}

- name: Deploy to Dev NCP Server
uses: appleboy/ssh-action@master
Expand Down

0 comments on commit ba5bfad

Please sign in to comment.