Daily update #109
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: Daily update | |
permissions: | |
contents: write | |
on: | |
schedule: | |
# Every day | |
- cron: '0 1 * * *' | |
push: | |
branches: [ master ] | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y \ | |
libxml-xpath-perl | |
- name: Render latest version | |
run: | | |
git config --global user.email github-actions[bot]@users.noreply.github.com | |
git config --global user.name github-actions[bot] | |
bash .github/scripts/update.bash | |
git push |