This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
Merge pull request #132 from News-Sseuk/FIX#45 #84
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: NewsSseuk Dev CI/CD | |
on: | |
push: | |
branches: | |
- develop | |
workflow_dispatch: # (2).수동 실행도 가능하도록 | |
jobs: | |
build: | |
runs-on: ubuntu-latest # (3).OS환경 | |
environment: develop | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 # (4).코드 check out | |
with: | |
ref: develop | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 # (5).자바 설치 | |
distribution: 'adopt' | |
- name: Install Chrome | |
run: sudo apt-get install -y google-chrome-stable | |
- name: Download and Install ChromeDriver | |
run: | | |
CHROME_DRIVER_VERSION=$(google-chrome --version | grep -oP '\d+\.\d+\.\d+\.\d+') | |
wget https://storage.googleapis.com/chrome-for-testing-public/${CHROME_DRIVER_VERSION}/linux64/chromedriver-linux64.zip | |
unzip chromedriver-linux64.zip -d /tmp/chromedriver | |
sudo mv /tmp/chromedriver/chromedriver-linux64/chromedriver /usr/local/bin/ | |
sudo chmod +x /usr/local/bin/chromedriver | |
- name: Verify ChromeDriver installation | |
run: chromedriver --version | |
- 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: NewsSseuk-dev | |
environment_name: NewsSseuk-dev-env | |
version_label: github-action-${{ steps.current-time.outputs.formattedTime }} | |
region: ap-northeast-2 | |
deployment_package: deploy/deploy.zip | |
wait_for_deployment: false |