Move title in HEADER.md #29
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: README | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'HEADER.md' | |
- 'docs/src/index.md' | |
- 'docs/src/assets/logo.svg' | |
- '.github/workflows/readme.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
- run: julia --color=yes readme.jl | |
- run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git diff --quiet || (git add . && git commit -m "Regenerate README.md") | |
git push |