Docker Image DNSMasq #1060
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docker Image DNSMasq | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 6 * * *" # 6 AM Daily | |
| push: | |
| paths: | |
| - dnsmasq/** | |
| - .github/workflows/dnsmasq.yml | |
| jobs: | |
| dnsmasq: | |
| name: DNSMasq | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: docker/setup-qemu-action@v3 | |
| - uses: docker/setup-buildx-action@v3 | |
| - name: Login to Github Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| if: ${{ !env.ACT }} | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| if: ${{ !env.ACT }} | |
| - uses: docker/build-push-action@v6 | |
| with: | |
| context: dnsmasq | |
| platforms: linux/amd64,linux/arm64 | |
| build-args: WEBPROC_VERSION=0.4.0 | |
| push: ${{ github.ref == 'refs/heads/main' && !env.ACT }} | |
| tags: ghcr.io/${{ github.repository_owner }}/dnsmasq:latest, wardenenv/dnsmasq:latest |