Skip to content

Databases Updater

Databases Updater #120

Workflow file for this run

name: Databases Updater
on:
schedule:
- cron: '0 0 * * 0/2'
workflow_dispatch:
inputs:
dry_run:
description: 'Dry run: do not push updates to repo'
required: true
default: true
type: boolean
jobs:
update_dbs:
name: Update MaxMind databases in redistribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: ./scripts/ci-cron
env:
GITHUB_PUSH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MAXMIND_LICENSE_KEY: ${{ secrets.MAXMIND_LICENSE_KEY }}
DRY_RUN: ${{ github.event.inputs.dry_run }}