Skip to content

Update porkbun API key #61

Update porkbun API key

Update porkbun API key #61

Workflow file for this run

name: Update DNS
on:
push:
branches:
- dev
jobs:
make_doc:
name: Update DNS
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Update DNS
run: poetry run python -m dns.sync
env:
PORKBUN_API_KEY: ${{ secrets.PORKBUN_API_KEY }}
PORKBUN_API_SECRET: ${{ secrets.PORKBUN_API_SECRET }}