This commit is contained in:
parent
6e75aca837
commit
2cbd2c2ce0
2 changed files with 16 additions and 10 deletions
16
.forgejo/workflows/action.yml
Normal file
16
.forgejo/workflows/action.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
on: [ push ]
|
||||
jobs:
|
||||
integration:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: alpine:latest
|
||||
steps:
|
||||
- run: apk add git nodejs gradle
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build jars
|
||||
run: |
|
||||
gradle jar shadowjar
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: jars
|
||||
path: build/libs/
|
|
@ -1,10 +0,0 @@
|
|||
package:
|
||||
image:
|
||||
name: gradle:jdk17
|
||||
script:
|
||||
- gradle jar shadowjar
|
||||
artifacts:
|
||||
paths:
|
||||
- build/libs/keycloak-scim-1.0-SNAPSHOT.jar
|
||||
- build/libs/keycloak-scim-1.0-SNAPSHOT-all.jar
|
||||
- build/libs/keycloak-scim-1.0-SNAPSHOT-all-legacy.jar
|
Loading…
Reference in a new issue