Compare commits
No commits in common. "feat/ci" and "main" have entirely different histories.
2 changed files with 10 additions and 30 deletions
|
@ -1,30 +0,0 @@
|
||||||
on: [push]
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: docker
|
|
||||||
container:
|
|
||||||
image: alpine:3
|
|
||||||
steps:
|
|
||||||
- run: apk add git nodejs gradle
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Build jars
|
|
||||||
run: |
|
|
||||||
gradle jar shadowjar
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: jars
|
|
||||||
path: build/libs/
|
|
||||||
release:
|
|
||||||
runs-on: docker
|
|
||||||
container:
|
|
||||||
image: node:lts-bookworm
|
|
||||||
needs: [build]
|
|
||||||
if: github.ref_type == 'tag'
|
|
||||||
steps:
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: jars
|
|
||||||
- uses: actions/forgejo-release@v2
|
|
||||||
with:
|
|
||||||
direction: upload
|
|
||||||
release-dir: jars
|
|
10
.gitlab-ci.yml
Normal file
10
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
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