searxng: setup #585
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dnscontrol | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- master | |
schedule: | |
- cron: '55 5 * * *' | |
jobs: | |
dnscontrol: | |
name: Run DNSControl | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@v3 | |
with: | |
image: tonistiigi/binfmt:latest | |
platforms: all | |
- name: Install nix | |
uses: cachix/install-nix-action@v26 | |
with: | |
github_access_token: ${{ secrets.AUTOMERGE_TOKEN }} | |
extra_nix_config: | | |
extra-platforms = i686-linux aarch64-linux arm-linux | |
- name: Setup GitHub Actions cache for Nix | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Setup SSH key | |
run: | | |
mkdir -p "$HOME/.ssh" | |
echo "${{ secrets.DEPLOY_KEY }}" > "$HOME/.ssh/id_ed25519" | |
echo "StrictHostKeyChecking no" > "$HOME/.ssh/config" | |
chmod -R 500 "$HOME/.ssh" | |
- name: Rsync zone files over SSH | |
run: | | |
sudo apt-get install -y rsync | |
rsync -avzr -e "ssh -p2222" [email protected]:/ltnet-zones/ zones/ || true | |
- name: Apply DNSControl changes | |
run: nix run ".#dnscontrol" -- push | |
- name: Rsync zone files over SSH | |
run: | | |
sudo apt-get install -y rsync | |
rsync -avzr --delete-after -e "ssh -p2222" zones/ [email protected]:/ltnet-zones/ |