infra/.forgejo/workflows/build-synapse.yaml
Finn 6aa98f85c8
Some checks failed
/ build-container (push) Failing after 33s
Add synapse container build with s3 storage backend
2024-08-08 12:29:31 -07:00

22 lines
678 B
YAML

on:
push:
paths:
- containers/synapse/Containerfile
schedule:
- cron: '0 12 */7 * *'
jobs:
build-container:
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
tags: git.janky.solutions/jankysolutions/infra/synapse:latest
platforms: linux/amd64
push: true