Skip to content

Commit

Permalink
Add action to build docker image and publish to DH
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev committed Oct 30, 2024
1 parent feb3142 commit de17d3e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/dh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build a docker image

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
cache: maven
- name: Build with Maven
run: mvn clean install
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
with:
driver: docker
- name: Build docker
uses: docker/build-push-action@v2
with:
context: ./
load: true
tags: |
jitsi/jitsi-multitrack-recorder:latest

0 comments on commit de17d3e

Please sign in to comment.