Finn
cb7222c78e
Some checks are pending
/ render-helm (push) Waiting to run
/ build-openbao-csi-provider (push) Successful in 17s
/ build-keycloak (push) Successful in 50s
/ build-synapse (push) Successful in 46s
/ build-traefik-forward-auth (push) Successful in 40s
/ build-openbao (push) Successful in 10m32s
22 lines
731 B
YAML
22 lines
731 B
YAML
on:
|
|
push:
|
|
paths:
|
|
- containers/openbao/**
|
|
- .forgejo/workflows/build-openbao.yaml
|
|
jobs:
|
|
build-openbao:
|
|
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@v6
|
|
with:
|
|
file: Containerfile
|
|
context: "{{defaultContext}}:containers/openbao"
|
|
tags: git.janky.solutions/jankysolutions/infra/openbao:latest
|
|
platforms: linux/amd64
|
|
push: true
|