Skip to content

fix: 스크립트 설정 #5

fix: 스크립트 설정

fix: 스크립트 설정 #5

Workflow file for this run

name: AECOFARM Dev CI/CD
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'
- 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: 1466587594/get-current-time@v2
id: current-time
with:
format: YYYY-MM-DDTHH-mm-ss
utcOffset: "+09:00"
- name: Show Current Time
run: echo "CurrentTime=${{ steps.current-time.outputs.formattedTime }}"
- name: Generate deployment package
run: |
mkdir -p deploy
cp build/libs/aecofarm-0.0.1-SNAPSHOT.jar deploy/application.jar
if [ ! -f deploy/application.jar ]; then
echo "JAR file not found, build failed."
exit 1
fi
cp Procfile deploy/Procfile
echo -e '#!/bin/bash\njava -jar /var/app/current/application.jar' > deploy/appstart
chmod +x deploy/appstart
cp -r .ebextensions-dev 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_ACCESS_KEY_ID }}
aws_secret_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
application_name: aecofarm-prod
environment_name: Aecofarm-prod-env
version_label: github-action-${{ steps.current-time.outputs.formattedTime }}
region: ap-northeast-2
deployment_package: deploy/deploy.zip
wait_for_deployment: false