-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jean Ribes
committed
Jul 31, 2021
1 parent
abdcf95
commit f4b809e
Showing
3 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Publish package to GitHub Packages | ||
on: | ||
release: | ||
types: [created] | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-java@v2 | ||
with: | ||
java-version: '11' | ||
distribution: 'adopt' | ||
- name: Publish package | ||
run: mvn --batch-mode deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# extension keycloak: group mapper | ||
projet de build basé sur https://github.com/thomasdarimont/keycloak-extension-playground/tree/master/simple-oidc-mapper | ||
# Keycloak OIDC IdentityProvider group mapper extension | ||
working extension build thanks to [@thomasdarimont](https://github.com/thomasdarimont/keycloak-extension-playground/tree/master/simple-oidc-mapper) | ||
## Build | ||
```shell | ||
mvn clean install | ||
mvn package | ||
``` | ||
|
||
copier le JAR dans `target/` dans le dossier `standalone/deployments` de votre serveur Keycloak | ||
## Install | ||
copy the generated JAR in `target/` (or download from Github releases) to standalone/deployments` in you keycloak server files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters