-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (34 loc) · 818 Bytes
/
ci.yaml
File metadata and controls
43 lines (34 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: CI
on:
push:
branches:
- act
pull_request:
branches:
- act
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.9
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Package Keycloak plugin
run: bunx keycloakify build
- name: Archive jar files
uses: actions/upload-artifact@v4
with:
name: theme
path: dist_keycloak/*.jar