Skip to content

fix: upgrade to keycloak 22.0.x version #34

fix: upgrade to keycloak 22.0.x version

fix: upgrade to keycloak 22.0.x version #34

Workflow file for this run

name: Keycloak Verify email by code RedFroggy CI
on:
push:
branches:
- "master"
- "main"
tags-ignore:
- "**"
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:

Check failure on line 16 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- uses: actions/checkout@v2
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: get-pom-version
id: pom-version
uses: entimaniac/[email protected]
- name: Print the version
run: echo "The version we just got is ${{ steps.pom-version.outputs.version }}"
- name: Build with Maven
run: mvn -B clean test