Skip to content

checkImages

checkImages #813

Workflow file for this run

# This workflow creates the publish files
name: checkImages
# Controls when the workflow will run
on:
#run it daily
schedule:
- cron: "6 5 * * *"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
checks:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Check images
run: ./build.sh check_images_all
- name: Add, commit and push
uses: EndBug/add-and-commit@v9.1.4
with:
add: docs/db sources
message: dbChecks
push: true