Skip to content

Commit

Permalink
add github action for build and publishToMavenLocal
Browse files Browse the repository at this point in the history
  • Loading branch information
maxxfrazer committed Jun 15, 2021
1 parent d13c77b commit 0b8a8f5
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/kotlin-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on:
push:
branches: '*'
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build publishToMavenLocal

0 comments on commit 0b8a8f5

Please sign in to comment.