keycloak-restrict-client-auth/.github/workflows/buildAndRelease.yml

41 lines
947 B
YAML
Raw Normal View History

2021-05-07 23:50:44 +02:00
name: Java CI with Maven
on:
push:
branches: [ main ]
tags:
- 'v*.*.*'
2021-05-07 23:50:44 +02:00
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: Cache maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B clean package --file pom.xml
2021-05-08 00:06:46 +02:00
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: target/keycloak-restrict-client-auth.jar
body_path: RELEASELOG
draft: true
fail_on_unmatched_files: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}