infra/.forgejo/workflows/build-openbao.yaml
Finn ae5b2cd2f8
All checks were successful
/ build-openbao (push) Successful in 10m6s
Add openbao image build
2024-08-29 11:29:08 -07:00

22 lines
730 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@v4
with:
file: Containerfile
context: "{{defaultContext}}:containers/openbao"
tags: git.janky.solutions/jankysolutions/infra/openbao:latest
platforms: linux/amd64
push: true