summaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker.yml
diff options
context:
space:
mode:
authorWim <wim@42.be>2021-10-17 14:12:39 +0200
committerWim <wim@42.be>2021-10-17 14:12:39 +0200
commita3a8a5769d494c9d0149d5b6a3ae1ef5e183e9d5 (patch)
tree7e151169fc88a7b35c9db834719a0a31179a8954 /.github/workflows/docker.yml
parent4dd8bae5c91fa4aef09d865d8fef1acd84f90925 (diff)
downloadmatterbridge-msglm-a3a8a5769d494c9d0149d5b6a3ae1ef5e183e9d5.tar.gz
matterbridge-msglm-a3a8a5769d494c9d0149d5b6a3ae1ef5e183e9d5.tar.bz2
matterbridge-msglm-a3a8a5769d494c9d0149d5b6a3ae1ef5e183e9d5.zip
Add docker build
Diffstat (limited to '.github/workflows/docker.yml')
-rw-r--r--.github/workflows/docker.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
new file mode 100644
index 00000000..63a0c143
--- /dev/null
+++ b/.github/workflows/docker.yml
@@ -0,0 +1,31 @@
+name: docker
+
+on:
+ push:
+ branches:
+ - 'master'
+
+jobs:
+ docker:
+ runs-on: ubuntu-latest
+ steps:
+ -
+ name: Set up QEMU
+ uses: docker/setup-qemu-action@v1
+ -
+ name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v1
+ -
+ name: Login to DockerHub
+ uses: docker/login-action@v1
+ with:
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
+ -
+ name: Build and push
+ id: docker_build
+ uses: docker/build-push-action@v2
+ with:
+ push: true
+ tags: 42wim/matterbridge:latest
+