infra/.forgejo/workflows/build-traefik-forward-auth.yaml

23 lines
830 B
YAML
Raw Normal View History

2024-08-12 22:08:53 +00:00
on:
push:
paths:
- containers/traefik-forward-auth/**
2024-08-12 22:08:53 +00:00
- .forgejo/workflows/build-traefik-forward-auth.yaml
jobs:
2024-08-12 22:10:29 +00:00
build-traefik-forward-auth:
2024-08-12 22:08:53 +00:00
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
2024-08-12 22:08:53 +00:00
with:
file: Containerfile
context: "{{defaultContext}}:containers/traefik-forward-auth"
tags: git.janky.solutions/jankysolutions/infra/traefik-forward-auth:latest
2024-08-12 22:08:53 +00:00
platforms: linux/amd64
2024-11-04 07:15:18 +00:00
push: ${{ github.ref == 'refs/heads/main' }}