-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd95251
commit 7d952a4
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Push to ECR | ||
|
||
on: | ||
push: | ||
branches: [ "test" ] | ||
|
||
env: | ||
AWS_REGION: ap-northeast-2 | ||
ECR_REGISTRY: 654654323954.dkr.ecr.ap-northeast-2.amazonaws.com | ||
ECR_REPOSITORY: repick-repo | ||
ZIP_FILE_NAME: deploy-package.zip | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: CI | ||
runs-on: ubuntu-latest | ||
environment: production | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Make application-secret.yml and set secrets | ||
run: | | ||
mkdir -p ./src/main/resources | ||
mkdir -p ./src/main/resources/key | ||
if [ -f ./src/main/resources/application.yml ]; then | ||
rm ./src/main/resources/application.yml | ||
fi | ||
touch ./src/main/resources/application.yml | ||
touch ./src/main/resources/${{ secrets.APPLE_AUTH_KEY_ID }}.p8 | ||
echo "${{ secrets.APPLICATION_SECRET_TEST }}" > ./src/main/resources/application.yml | ||
echo "${{ secrets.APPLE_AUTH_KEY }}" > ./src/main/resources/key/${{ secrets.APPLE_AUTH_KEY_ID }}.p8 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
## gradle build | ||
- name: Build with Gradle | ||
run: ./gradlew bootJar | ||
|
||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_TEST }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_TEST }} | ||
aws-region: ${{ env.AWS_REGION }} | ||
|
||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v2 | ||
with: | ||
mask-password: true | ||
|
||
- name: Build, tag, and push image to Amazon ECR | ||
id: build-image | ||
run: | | ||
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY . | ||
docker push $ECR_REGISTRY/$ECR_REPOSITORY | ||
- name: Zip deployment files | ||
run: | | ||
zip -r ${{ env.ZIP_FILE_NAME }} ./aws/ | ||
- name: Upload AppSpec and scripts to S3 | ||
run: | | ||
aws s3 cp ${{ env.ZIP_FILE_NAME }} s3://${{ secrets.S3_BUCKET_TEST }}/${{ env.ZIP_FILE_NAME }} | ||
- name: Trigger CodeDeploy | ||
run: | | ||
aws deploy create-deployment \ | ||
--application-name repick-codedeploy-app \ | ||
--deployment-group-name repick-codedeploy-deployment-group \ | ||
--s3-location bucket=${{ secrets.S3_BUCKET_TEST }},bundleType=zip,key=${{ env.ZIP_FILE_NAME }} \ | ||
--file-exists-behavior OVERWRITE \ | ||
--ignore-application-stop-failures |