Skip to content

feat(github-release): update open-telemetry/opentelemetry-collector-releases ( v0.110.0 → v0.111.0 ) #1612

feat(github-release): update open-telemetry/opentelemetry-collector-releases ( v0.110.0 → v0.111.0 )

feat(github-release): update open-telemetry/opentelemetry-collector-releases ( v0.110.0 → v0.111.0 ) #1612

Workflow file for this run

---
name: Octodns
on:
push:
paths:
- octodns/**
- .github/workflows/octodns.yml
pull_request:
env:
SCALEWAY_SECRET_KEY: ${{ secrets.SCALEWAY_SECRET_KEY }}
jobs:
octodns-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[octodns]'
- name: Validate octodns config
run: |
octodns-validate --config-file=./octodns/config.yaml --all
octodns-deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
needs: [octodns-lint]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install '.[octodns]'
- name: Apply octodns config
run: |
octodns-sync --config-file=./octodns/config.yaml --doit --force