setup action to build/publish on PyPI

This commit is contained in:
Guilhem Saurel
2021-07-18 21:09:51 +02:00
parent dcc73dfc81
commit 932965c8af
4 changed files with 19 additions and 4 deletions

28
.github/workflows/docker-hub.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Publish
on:
push:
branches:
- 'master'
tags:
- 'v*'
jobs:
docker-hub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/metadata-action@v3
id: meta
with:
images: nim65s/matrix-webhook
- uses: docker/login-action@v1
with:
username: nim65s
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}