thalals is learning GitHub Actions #7
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
# 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 |