Merge remote-tracking branch 'origin/feat/cicd' into feat/cicd #2
Workflow file for this run
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
# github repository Actions 페이지에 나타낼 이름 | ||
name: NumberOne-Backend-CICD | ||
# event trigger | ||
on: | ||
push: | ||
branches: [ "main", "feat/cicd" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
permissions: write-all | ||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
## jdk setting | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' # https://github.com/actions/setup-java | ||
## gradle caching | ||
- name: Gradle Caching | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Build with Gradle | ||
run: ./gradlew build -x test | ||
shell: bash | ||
- name: create application-prod.yml | ||
if: contains(github.ref, 'main', 'feat/cicd') | ||
Check failure on line 44 in .github/workflows/cicd.yml GitHub Actions / NumberOne-Backend-CICDInvalid workflow file
|
||
run: | | ||
cd ./src/main/resources | ||
touch ./application-prod.yml | ||
echo "${{ secrets.PROPERTIES_PROD }}" > ./application-prod.yml | ||
shell: bash | ||
- name: Build With Gradle | ||
if: contains(github.ref, 'main', 'feat/cicd') | ||
run: ./gradlew build -x test | ||
## docker build & push to production | ||
- name: Docker build & push to prod | ||
if: contains(github.ref, 'main', 'feat/cicd') | ||
run: | | ||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
docker build -f Dockerfile -t ${{ secrets.DOCKER_USERNAME }}/versatile0010 . | ||
docker push ${{ secrets.DOCKER_USERNAME }}/versatile0010 | ||
## deploy to production | ||
- name: Deploy | ||
uses: appleboy/ssh-action@master | ||
id: deploy-prod | ||
if: contains(github.ref, 'main', 'feat/cicd') | ||
with: | ||
host: ${{ secrets.EC2_HOST }} | ||
username: ${{ secrets.EC2_USERNAME }} | ||
key: ${{ secrets.EC2_PRIVATE_KEY }} | ||
envs: GITHUB_SHA | ||
script: | | ||
sudo docker rm -f $(docker ps -qa) | ||
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/versatile0010 | ||
docker-compose up -d | ||
docker image prune -f |