forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 4
56 lines (47 loc) · 1.51 KB
/
release.yml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Build Keycloak, Create Release and Publish Docker Image
on:
push:
tags:
- "*"
jobs:
release_and_publish:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract semver
id: extract_semver
run: |
TAG_NAME=${GITHUB_REF##*/}
echo "TAG_NAME=${TAG_NAME}" >> $GITHUB_ENV
if [[ "$TAG_NAME" =~ ^([0-9]+.[0-9]+.[0-9]+) ]]; then
echo "SEMVER=${BASH_REMATCH[1]}" >> $GITHUB_ENV
else
echo "SEMVER=$TAG_NAME" >> $GITHUB_ENV
fi
- name: Set version
run: ./set-version.sh ${{ env.SEMVER }}
- name: Build Keycloak
uses: ./.github/actions/build-keycloak
- name: Release
uses: softprops/action-gh-release@v2
with:
files: quarkus/dist/target/keycloak-*.tar.gz
tag_name: ${{ env.TAG_NAME }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./quarkus/container/
file: ./quarkus/container/Dockerfile
push: true
tags: ghcr.io/vunetsystems/keycloak:${{ env.TAG_NAME }}
build-args: |
KEYCLOAK_VERSION=${{ env.SEMVER }}