Skip to content

Commit

Permalink
feature: cd test
Browse files Browse the repository at this point in the history
  • Loading branch information
mushroom1324 committed Aug 29, 2024
1 parent d0c7b1d commit 3a05364
Showing 1 changed file with 57 additions and 57 deletions.
114 changes: 57 additions & 57 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,63 +14,63 @@ 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 }}" > ./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 }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
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 }}/${{ env.ZIP_FILE_NAME }}
# 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 }}" > ./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 }}
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# 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 }}/${{ env.ZIP_FILE_NAME }}

deploy:
needs: build
Expand Down

0 comments on commit 3a05364

Please sign in to comment.