mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-02-24 06:54:07 +08:00
22 lines
411 B
YAML
22 lines
411 B
YAML
|
---
|
||
|
name: deploy
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
dnscontrol:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@master
|
||
|
|
||
|
- name: DNSControl push
|
||
|
uses: koenrh/dnscontrol-action@master
|
||
|
env:
|
||
|
CLOUDFLARE_API_KEY: ${{ secrets.CLOUDFLARE_API_KEY }}
|
||
|
CLOUDFLARE_API_USER: ${{ secrets.CLOUDFLARE_API_USER }}
|
||
|
with:
|
||
|
args: push
|