Skip to content

Commit

Permalink
Create deployBack.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JONG-KYEONG committed Jan 7, 2024
1 parent 67ed0f5 commit 84ace60
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/deployBack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build and Deploy to EC2

on:
push:
branches: [ "develop" ]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17

- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash

- name: Build and Test
run: ./gradlew build test

0 comments on commit 84ace60

Please sign in to comment.