Update deps (#8) #17
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: update_readme | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
generate_readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Cargo readme | |
run: cargo install cargo-readme | |
- name: Run Cargo readme | |
run: cd formula && cargo readme --no-title --no-license > ../README.md | |
- name: Commit the changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update README.md | |
file_pattern: README.md |