Skip to content

Commit

Permalink
cicd test (#54)
Browse files Browse the repository at this point in the history
* config: jwt 속성을 yml에 설정

* config: git cache 초기화

* feat: Jwt 속성 관리 클래스 생성

* feat: 로그인 컨트롤러 클래스 생성

* feat: 로그인 요청 dto 클래스 생성

* feat: 로그인 service 클래스 생성

* feat: 메서드 추가

- 전화번호에 해당하는 유저가 있는지 확인하는 메서드
- 전화번호로 유저 객체를 반환하는 메서드

* feat: 필드 추가 및 전화번호 인덱싱 설정

* feat: 로그인 성공 상태 코드 추가

* feat: 로그인 실패 상태 코드 추가

* style: 엔터한 공간 줄이기

* chore: ci/cd test

* chore: ci/cd test

* chore: ci/cd test

* cicd test (#47)

* config: jwt 속성을 yml에 설정

* config: git cache 초기화

* feat: Jwt 속성 관리 클래스 생성

* feat: 로그인 컨트롤러 클래스 생성

* feat: 로그인 요청 dto 클래스 생성

* feat: 로그인 service 클래스 생성

* feat: 메서드 추가

- 전화번호에 해당하는 유저가 있는지 확인하는 메서드
- 전화번호로 유저 객체를 반환하는 메서드

* feat: 필드 추가 및 전화번호 인덱싱 설정

* feat: 로그인 성공 상태 코드 추가

* feat: 로그인 실패 상태 코드 추가

* style: 엔터한 공간 줄이기

* chore: ci/cd test

---------

Co-authored-by: hyeokson <[email protected]>

* chore: ci/cd test

* chore: ci/cd test

* chore: ci/cd test

---------

Co-authored-by: hyeokson <[email protected]>
  • Loading branch information
hyeokson and hyeokson authored Aug 6, 2024
1 parent 5f11947 commit 27aa943
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: CI/CD test

on:
pull_request:
branches: "develop"
pull_request_target:
types: [closed]

jobs:
build:
if: github.event_name == 'push'
environment: aws
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop'
runs-on: ubuntu-latest

permissions:
Expand All @@ -20,12 +21,11 @@ jobs:
with:
java-version: '17'
distribution: 'oracle'

- name: echo test
run: |
echo "EC2_PUBLIC_IP: ${{ secrets.EC2_PUBLIC_IP }}"
echo "DB_USERNAME: ${{ secrets.DB_USERNAME }}"
- name: Setup SSH
uses: webfactory/[email protected]
with:
Expand Down

0 comments on commit 27aa943

Please sign in to comment.