Skip to content

Commit

Permalink
docs: github actions 빌드까지 script 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
letskuku committed Jan 12, 2024
1 parent ed6e229 commit 3fcc09f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: sharemind-deploy

on:
push:
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: 'temurin'

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


- name: Build with Gradle
run: ./gradlew clean build
shell: bash

0 comments on commit 3fcc09f

Please sign in to comment.