2024-08-08 19:27:35 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2024-09-10 16:57:38 +00:00
|
|
|
- containers/synapse/**
|
2024-08-08 19:31:10 +00:00
|
|
|
- .forgejo/workflows/build-synapse.yaml
|
2024-08-08 19:27:35 +00:00
|
|
|
jobs:
|
2024-08-08 19:31:10 +00:00
|
|
|
build-synapse:
|
2024-08-08 19:27:35 +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
|
2024-09-08 07:02:03 +00:00
|
|
|
uses: docker/build-push-action@v6
|
2024-08-08 19:27:35 +00:00
|
|
|
with:
|
2024-08-08 19:31:10 +00:00
|
|
|
file: containers/synapse/Containerfile
|
2024-08-08 19:27:35 +00:00
|
|
|
tags: git.janky.solutions/jankysolutions/infra/synapse:latest
|
|
|
|
platforms: linux/amd64
|
|
|
|
push: true
|