Skip to content

Commit

Permalink
THT-Server-244 [Admin] 어드민 모듈 ci-cd 구축
Browse files Browse the repository at this point in the history
  • Loading branch information
thalals committed Jul 25, 2024
1 parent 33d8c78 commit 275eb20
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 8 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/ADMIN-Server-gradle-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle

name: THT ADMIN SERVER
run-name: ${{ github.actor }} is learning GitHub Actions

on:
pull_request:
types:
- closed
branches:
- main

env:
AWS_CODE_DEPLOY_APPLICATION: THT-ApiServer-GitAction
AWS_CODE_DEPLOY_GROUP: THT-ApiServer-GitAction-SingleServer

jobs:
build:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'admin')

permissions:
contents: read
packages: write

steps:
- name: CheckOut
uses: actions/checkout@v4
with:
token: ${{ secrets.GIT_TOKEN }}
submodules: true

- name: Set up JDK 17
uses:
actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

- name: Setup Gradle
uses: gradle/actions/setup-gradle@ec92e829475ac0c2315ea8f9eced72db85bb337a # v3.0.0

- name : set time zone
uses: szenius/[email protected]
with:
timezoneLinux: "Asia/Seoul"
timezoneMacos: "Asia/Seoul"
timezoneWindows: "Seoul Standard Time"

- name: Cache with Gradle
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ github.repository }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ github.repository }}-gradle-
- name: Build with Gradle
run: ./gradlew clean tht-admin:clean tht-admin:build

- name: make env now date
id: now
run: echo "date=`date +%Y%m%d_%H:%M:%S`" >> "$GITHUB_OUTPUT"

- name: Make Zip File
id: file
run: zip -qq -r ./deployfile-${{ steps.now.outputs.date }}.zip .
shell: bash
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,10 @@ run-name: ${{ github.actor }} is learning GitHub Actions

on:
pull_request:
types:
- closed
branches:
- main
paths:
- 'tht-apis/**'
push:
branches:
- main
paths:
- 'tht-apis/**'

env:
AWS_CODE_DEPLOY_APPLICATION: THT-ApiServer-GitAction
Expand All @@ -27,7 +22,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'app')
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'app')

permissions:
contents: read
Expand Down

0 comments on commit 275eb20

Please sign in to comment.