Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
Exclude logs dir
  • Loading branch information
sebastienvermeille committed May 14, 2023
1 parent b994ce8 commit 10e272f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,20 @@ jobs:
- name: Publish to GitHub Packages
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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

0 comments on commit 10e272f

Please sign in to comment.