From 10e272fe16cc35b4e20e24668acca69b1d26ca60 Mon Sep 17 00:00:00 2001 From: Sebastien Vermeille Date: Sun, 14 May 2023 16:24:19 +0000 Subject: [PATCH] Update .gitignore Exclude logs dir --- .github/workflows/release.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8f4f9c3a..f4b23407 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,4 +31,20 @@ jobs: - name: Publish to GitHub Packages run: mvn --batch-mode deploy env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - 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.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_SECRET }} + - + name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + push: true + tags: cookiecodedev/rika2mqtt:latest \ No newline at end of file