summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorWim <wim@42.be>2021-10-17 15:36:43 +0200
committerWim <wim@42.be>2021-10-17 15:36:43 +0200
commit7464fd149c0799949f85e28693b6bcc71cbf8a06 (patch)
tree8bffbb73b31db1edd83458d9af1a3e61ab1f88d0 /.github
parent86f1a8019c4a7fb052b4c87d9326cde78c2a58dc (diff)
downloadmatterbridge-msglm-7464fd149c0799949f85e28693b6bcc71cbf8a06.tar.gz
matterbridge-msglm-7464fd149c0799949f85e28693b6bcc71cbf8a06.tar.bz2
matterbridge-msglm-7464fd149c0799949f85e28693b6bcc71cbf8a06.zip
Add docker builds on tags
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docker.yml24
1 files changed, 22 insertions, 2 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 1a763261..974c5cf9 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -4,6 +4,11 @@ on:
push:
branches:
- 'master'
+ tags:
+ - 'v*'
+ pull_request:
+ branches:
+ - 'master'
jobs:
docker:
@@ -19,8 +24,22 @@ jobs:
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
+ name: Docker meta
+ id: meta
+ uses: docker/metadata-action@v3
+ with:
+ images: 42wim/matterbridge
+ tags: |
+ type=ref,event=branch
+ type=ref,event=pr
+ type=semver,pattern={{version}}
+ type=semver,pattern=stable
+ type=semver,pattern={{major}}
+ type=semver,pattern={{major}}.{{minor}}
+ -
name: Login to DockerHub
uses: docker/login-action@v1
+ if: github.event_name != 'pull_request'
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -30,6 +49,7 @@ jobs:
uses: docker/build-push-action@v2
with:
context: .
- push: true
- tags: 42wim/matterbridge:latest
+ push: ${{ github.event_name != 'pull_request' }}
+ tags: ${{ steps.meta.outputs.tags }}
+ labels: ${{ steps.meta.outputs.labels }}