Skip to content

Commit

Permalink
adjusts actions and version
Browse files Browse the repository at this point in the history
  • Loading branch information
Olaf Horstmann committed Sep 17, 2021
1 parent 801476a commit 64f3b7c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF:10}
- run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- name: Build
run: gradle jar
- name: Create release
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Add a password hash provider to handle BCrypt passwords inside Keycloak.

## Test with docker-compose
```bash
cp build/libs/keycloak-bcrypt-1.6.2.jar docker/
cp build/libs/keycloak-bcrypt-1.6.0.jar docker/
docker-compose up -d
```

## Install
```
curl -L https://github.com/ommsolutions/keycloak-bcrypt/releases/download/1.6.2/keycloak-bcrypt-1.6.2.jar > KEYCLOAK_HOME/standalone/deployments/keycloak-bcrypt-1.6.2.jar
curl -L https://github.com/ommsolutions/keycloak-bcrypt/releases/download/1.6.0/keycloak-bcrypt-1.6.0.jar > KEYCLOAK_HOME/standalone/deployments/keycloak-bcrypt-1.6.0.jar
```
You need to restart Keycloak.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = "com.github.leroyguillaume"
version = "1.6.2"
version = "1.6.0"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM jboss/keycloak:10.0.1

COPY ./keycloak-bcrypt-1.6.2.jar /opt/jboss/keycloak/standalone/deployments/
COPY ./keycloak-bcrypt-1.6.0.jar /opt/jboss/keycloak/standalone/deployments/

0 comments on commit 64f3b7c

Please sign in to comment.