mirror of
https://github.com/strukturag/nextcloud-spreed-signaling.git
synced 2025-03-14 19:42:48 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
730 B
YAML
36 lines
730 B
YAML
name: Janus Docker image
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
paths:
|
|
- '.github/workflows/docker-janus.yml'
|
|
- 'docker/janus/Dockerfile'
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- '.github/workflows/docker-janus.yml'
|
|
- 'docker/janus/Dockerfile'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
TEST_TAG: strukturag/nextcloud-spreed-signaling:janus-test
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Build Docker image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: docker/janus
|
|
load: true
|
|
tags: ${{ env.TEST_TAG }}
|