chore: add a build workflow to ensure the Dockerfile is alright #4
1 changed files with 19 additions and 0 deletions
19
.github/workflows/build.yml
vendored
Normal file
19
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
name: build.yml
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
-
|
||||||
|
name: Build and push
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
build-args: |
|
||||||
|
MANIFEST_ID="community.webstreamr"
|
||||||
|
MANIFEST_NAME="WebStreamr"
|
||||||
|
push: false
|
||||||
|
tags: webstreamr/webstreamr:latest
|
||||||
Loading…
Reference in a new issue