Database Update (Self-Hosted) #1371
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
# yamllint disable rule:line-length | |
# yamllint disable rule:braces | |
name: Database Update (Self-Hosted) | |
on: | |
workflow_dispatch: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '27 7 * * *' | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
update: | |
runs-on: self-hosted | |
name: DB Update | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
composer update --optimize-autoloader --no-interaction --no-progress | |
- name: Update database | |
run: | | |
make cron-clean | |
make cron | |
- name: Get date updated | |
id: last-update-date | |
run: echo "::set-output name=date::$(cat docs/_data/last-update-date)" | |
- name: Run tests | |
run: | | |
vendor/bin/phpunit | |
- name: Commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: Automatic build for ${{ steps.last-update-date.outputs.date }} | |
add: docs/json/ |