mirror of
https://github.com/System-End/dns.git
synced 2026-04-19 23:22:55 +00:00
19 lines
363 B
YAML
19 lines
363 B
YAML
name: deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
octodns:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: '2.7'
|
|
- name: Install OctoDNS
|
|
run: pip install octodns
|
|
- name: Sync w/ production DNS providers
|
|
run: ./bin/sync
|