Add MYSQL_CLIENT_EXTRA_PARAMS env var #4
Workflow file for this run
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 CI pdns-mysql alpine | |
| on: | |
| push: | |
| tags: | |
| - 'pdns-alpine-*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Out Repo | |
| uses: actions/checkout@v4 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
| password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
| - name: Set output | |
| id: vars | |
| run: echo ::set-output name=version::${GITHUB_REF##*-} | |
| - name: Build and push PDNS mysql | |
| id: docker_build_pdns | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: ./pdns-mysql | |
| file: ./pdns-mysql/Dockerfile.alpine | |
| platforms: linux/amd64,linux/arm64 | |
| builder: ${{ steps.buildx.outputs.name }} | |
| push: true | |
| tags: ${{ secrets.DOCKER_HUB_USERNAME }}/pdns-mysql:${{ steps.vars.outputs.version }}-alpine | |
| - name: Image digest | |
| run: echo ${{ steps.docker_build_pdns.outputs.digest }} |