diff --git a/.gitea/workflows/ddns.yaml b/.gitea/workflows/ddns.yaml new file mode 100644 index 0000000..8276aff --- /dev/null +++ b/.gitea/workflows/ddns.yaml @@ -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 }} \ No newline at end of file