diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b3ebfc9..30c5303 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -14,13 +14,22 @@ jobs: - name: Extract dyndnsd version from tag name run: | echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV + # https://github.com/marketplace/actions/build-and-push-docker-images - - name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }} - uses: docker/build-push-action@v1 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + + - name: Login to Docker Hub + uses: docker/login-action@v1 with: username: cmur2 password: ${{ secrets.DOCKER_TOKEN }} - repository: cmur2/dyndnsd - path: docker - build_args: DYNDNSD_VERSION=${{ env.DYNDNSD_VERSION }} - tag_with_ref: true + + - name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }} + uses: docker/build-push-action@v2 + with: + context: docker + build-args: | + DYNDNSD_VERSION=3.3.0 + push: true + tags: cmur2/dyndnsd:${{ env.DYNDNSD_VERSION }}