fix: 생일자가 없는 경우는 푸시알림 보내지 않도록 변경 #204
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: Mash-Up Admin Dev CI | |
on: | |
push: | |
branches: [ develop ] | |
paths: | |
- "mashup-admin/**" | |
- "mashup-domain/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
cache: 'gradle' | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.PROD_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.PROD_AWS_SECRET_ACCESS_KEY }} | |
aws-region: ap-northeast-2 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build Jib | |
run: | | |
chmod +x gradlew | |
./gradlew :mashup-admin:jib -PbuildPhase=develop -PencryptorPassword=${{ secrets.ENCRYPTOR_PASSWORD }} |