Skip to content

Commit

Permalink
👷 Add deploy action
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Gleich <matthewgleich@gmail.com>
  • Loading branch information
gleich authored and maxwofford committed Jul 8, 2020
1 parent d462e00 commit 5a35bab
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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

0 comments on commit 5a35bab

Please sign in to comment.