diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-08-03 08:36:19 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-08-03 10:00:50 +0200 |
commit | 7b15838696e7024f5bec10cc5c8668b587bae782 (patch) | |
tree | ee1c5787fa1b9a50402266ee1907dad08c2088e8 /.github | |
parent | 0e31829401c78c36a8e473091644c12d04742370 (diff) |
Added docker build&push to the CI.
* update some git submodules
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-docker.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml new file mode 100644 index 000000000..bf99eccb0 --- /dev/null +++ b/.github/workflows/build-docker.yml @@ -0,0 +1,25 @@ +name: Docker Build + +on: + push: + branches: + - 'main' + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v4 + with: + push: true + tags: utoni/ndpid:latest |