Skip to content

Commit

Permalink
Add build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
janseeger committed Sep 29, 2023
1 parent e4ba895 commit 8d62564
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build, Test, Release

on:
push:
branches: [ "**" ]
paths-ignore:
- 'README.md'

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'

- name: Setup Gradle to support advanced caching
uses: gradle/[email protected]

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build release with Gradle
run: ./gradlew assembleRelease

# - name: Build release with Gradle
# run: ./gradlew publish

0 comments on commit 8d62564

Please sign in to comment.