Add keycloak build
This commit is contained in:
parent
483748645b
commit
7d984b861b
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/build-keycloak.yaml
Normal file
21
.forgejo/workflows/build-keycloak.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
on:
|
||||
push:
|
||||
paths:
|
||||
- containers/keycloak/*
|
||||
- .forgejo/workflows/build-keycloak.yaml
|
||||
jobs:
|
||||
build-synapse:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: library/docker:dind
|
||||
steps:
|
||||
- run: apk add --no-cache nodejs git
|
||||
- name: login to container registry
|
||||
run: echo "${{ secrets.DEPLOY_TOKEN }}" | docker login --username ${{ secrets.DEPLOY_USER }} --password-stdin git.janky.solutions
|
||||
- name: build container image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
file: containers/keycloak/Containerfile
|
||||
tags: git.janky.solutions/jankysolutions/infra/keycloak:latest
|
||||
platforms: linux/amd64
|
||||
push: true
|
Loading…
Reference in a new issue