Merge pull request #13 from mantidproject/37527_deploy_cnn #28
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: Index Repository | |
on: | |
push: | |
branches: ["main", "master"] | |
jobs: | |
indexing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Create repository index file | |
run: | | |
python system/scriptrepositoryparser.py $PWD/ $PWD/ | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Updating repository index JSON file | |
commit_options: '--no-verify' | |
file_pattern: './repository.json' |