22 lines
678 B
YAML
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
|