Add .gitea/workflows/ddns.yaml

This commit is contained in:
root 2023-12-30 11:40:23 +08:00
parent 2c4bf47869
commit 181276b08f

@ -0,0 +1,17 @@
name: DDNS Update
run-name: DDNS Update
on:
push:
branches:
- main
- master
schedule:
- cron: '@daily'
jobs:
DDNS:
runs-on: linux
steps:
- run: |
curl $DYNV6_URL
env:
DYNV6_URL: ${{ secrets.DYNV6_URL }}