Skip to content

🚨 Fix yaml linting errors #6

🚨 Fix yaml linting errors

🚨 Fix yaml linting errors #6

Workflow file for this run

name: OctoDNS Sync
on:
workflow_dispatch:
push:
paths:
- "hostedzones/**"
- "config.yaml"
branches:
- main
jobs:
sync-with-route53:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
make install
- name: Run OctoDNS sync
run: |
source venv/bin/activate
make sync-apply
env:
AWS_ACCESS_KEY_ID: ${{ secrets.OCTODNS_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.OCTODNS_AWS_SECRET_ACCESS_KEY }}