aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorGravatar Joseph Garrone <[email protected]>2023-12-01 00:15:36 +0100
committerGravatar Joseph Garrone <[email protected]>2023-12-01 00:15:36 +0100
commitc9aad1406502ba08c654ade4bfa95bf3a6e93830 (patch)
treeec8e55f8fd080ca4c65edfc12cbcaaca8f7ef8ef /.github
parentRollback (diff)
publish retrocompat jar
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 6423977..2e3aa48 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -49,6 +49,7 @@ jobs:
- run: npx keycloakify
env:
XDG_CACHE_HOME: "/home/runner/.cache/yarn"
+ - run: mv build_keycloak/target/retrocompat-*.jar retrocompat-keycloak-theme.jar
- run: mv build_keycloak/target/*.jar keycloak-theme.jar
- uses: softprops/action-gh-release@v1
with:
@@ -56,8 +57,10 @@ jobs:
tag_name: v${{ needs.check_if_version_upgraded.outputs.to_version }}
target_commitish: ${{ github.head_ref || github.ref }}
generate_release_notes: true
- files: keycloak-theme.jar
draft: false
+ files: |
+ retrocompat-keycloak-theme.jar
+ keycloak-theme.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}