infra/.forgejo/workflows/build-freeswitch.yaml
Finn a011ba5dca
Some checks failed
/ build-freeswitch (push) Has been cancelled
Add freeswitch container
2024-11-03 21:55:46 -08:00

22 lines
746 B
YAML

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