Update versioning on the manifest #2
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 versioning on the manifest | |
on: | |
workflow_dispatch: | |
jobs: | |
update_configuration: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Install requirements | |
run: pip install -r requirements.txt | |
- name: Update the manifest | |
run: python3 Tools/update_manifest_versioning.py | |
- name: Commit the changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: GitHub Action - Update manifest versioning |