fix: 당근 1등 리워드 팝업의 경우, 최근 1등인 경우에만 노출 (#373) #133
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 Recruit Dev CI | |
on: | |
push: | |
branches: [ develop ] | |
paths: | |
- "mashup-recruit/**" | |
- "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-recruit:jib -PbuildPhase=develop -PencryptorPassword=${{ secrets.ENCRYPTOR_PASSWORD }} |