2024-08-08 19:32:58 +00:00
|
|
|
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:
|
2024-08-08 19:42:17 +00:00
|
|
|
file: Containerfile
|
2024-08-08 19:41:18 +00:00
|
|
|
context: "{{defaultContext}}:containers/keycloak"
|
2024-08-08 19:32:58 +00:00
|
|
|
tags: git.janky.solutions/jankysolutions/infra/keycloak:latest
|
|
|
|
platforms: linux/amd64
|
|
|
|
push: true
|