Skip to content

chore(deps): update dependency wrangler to v3.93.0 (#16) #12

chore(deps): update dependency wrangler to v3.93.0 (#16)

chore(deps): update dependency wrangler to v3.93.0 (#16) #12

Workflow file for this run

name: Docker Publish
# Prevent two instances of this workflow running at the same time
concurrency: docker-publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: meyfa
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./
file: ./client/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: meyfa/ddns-client:latest
cache-from: type=gha
cache-to: type=gha,mode=max
# See: https://docs.docker.com/build/ci/github-actions/update-dockerhub-desc/
- name: Update DockerHub description
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
with:
username: meyfa
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
repository: meyfa/ddns-client
short-description: ${{ github.event.repository.description }}
enable-url-completion: true