infra/.forgejo/workflows/build-traefik-forward-auth.yaml
Renovate Bot c4342647f0
All checks were successful
/ build-keycloak (push) Successful in 35s
/ build-synapse (push) Successful in 50s
/ build-traefik-forward-auth (push) Successful in 42s
/ build-openbao (push) Successful in 11m11s
chore(deps): update docker/build-push-action action to v6
2024-09-08 07:02:03 +00:00

22 lines
795 B
YAML

on:
push:
paths:
- containers/traefik-forward-auth/*
- .forgejo/workflows/build-traefik-forward-auth.yaml
jobs:
build-traefik-forward-auth:
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/traefik-forward-auth"
tags: git.janky.solutions/jankysolutions/infra/traefik-forward-auth:latest
platforms: linux/amd64
push: true