[mod] 수정 #23
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: CICD | |
on: | |
push: | |
branches: | |
- main | |
- 'feature/#123-feat-cicd' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
# application.yml 파일 생성 또는 업데이트 | |
- run: | | |
if [ ! -f "./src/main/resources/application.yml" ]; then | |
touch ./src/main/resources/application.yml | |
fi | |
echo "${{ secrets.APPLICATION2 }}" >> ./src/main/resources/application.yml | |
# application-secret.yml 파일 생성 또는 업데이트 | |
- run: | | |
if [ ! -f "./src/main/resources/application-secret.yml" ]; then | |
touch ./src/main/resources/application-secret.yml | |
fi | |
echo "${{ secrets.APPLICATION_SECRET }}" >> ./src/main/resources/application-secret.yml | |
# 생성된 파일들을 아티팩트로 업로드 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: application-files | |
path: | | |
./src/main/resources/application.yml | |
./src/main/resources/application-secret.yml | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew clean build -x test | |
- name: Get current time | |
uses: josStorer/get-current-time@v2 | |
id: current-time | |
with: | |
format: YYYY-MM-DDTHH-mm-ss | |
utcOffset: "+09:00" | |
# 배포용 패키지 경로 설정 | |
- name: Set artifact path | |
run: | | |
artifact=$(ls ./build/libs/*.jar | head -n 1) | |
echo "artifact=$artifact" >> $GITHUB_ENV | |
# 새 환경에 배포 | |
- name: Deploy to Green Environment | |
uses: einaregilsson/beanstalk-deploy@v20 | |
with: | |
aws_access_key: ${{ secrets.AWS_ACTION_ACCESS_KEY }} | |
aws_secret_key: ${{ secrets.AWS_ACTION_SECRET_ACCESS_KEY }} | |
application_name: mallangs-web | |
environment_name: Mallangs-web-env | |
version_label: github-action-${{ steps.current-time.outputs.time }} | |
region: ap-northeast-2 | |
deployment_package: ${{ env.artifact }} |