Fix: Build error #12
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: Breifing Dev CI/CD | |
on: | |
pull_request: | |
types: [closed] | |
workflow_dispatch: # (2).μλ μ€νλ κ°λ₯νλλ‘ | |
jobs: | |
build: | |
runs-on: ubuntu-latest # (3).OSνκ²½ | |
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 # (4).μ½λ check out | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 # (5).μλ° μ€μΉ | |
distribution: 'adopt' | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
shell: bash # (6).κΆν λΆμ¬ | |
- name: Build with Gradle | |
run: ./gradlew clean build -x test | |
shell: bash # (7).build μμ | |
- name: Get current time | |
uses: 1466587594/get-current-time@v2 | |
id: current-time | |
with: | |
format: YYYY-MM-DDTHH-mm-ss | |
utcOffset: "+09:00" # (8).build μμ μ μκ°ν보 | |
- name: Show Current Time | |
run: echo "CurrentTime=$" | |
shell: bash # (9).ν보ν μκ° λ³΄μ¬μ£ΌκΈ° | |
- name: Generate deployment package | |
run: | | |
mkdir -p deploy | |
cp build/libs/*.jar deploy/application.jar | |
cp Procfile deploy/Procfile | |
cp -r .ebextensions deploy/.ebextensions | |
cp -r .platform deploy/.platform | |
cd deploy && zip -r deploy.zip . | |
- name: Beanstalk Deploy | |
uses: einaregilsson/beanstalk-deploy@v20 | |
with: | |
aws_access_key: ${{ secrets.AWS_ACTION_ACCESS_KEY_ID }} | |
aws_secret_key: ${{ secrets.AWS_ACTION_SECRET_ACCESS_KEY }} | |
application_name: breifing-dev | |
environment_name: Breifing-dev-env | |
version_label: github-action-${{ steps.current-time.outputs.formattedTime }} | |
region: ap-northeast-2 | |
deployment_package: deploy/deploy.zip | |
wait_for_environment_recovery: 60 | |