Skip to content

Corrected default value type in the XCreds manifest (#625) #109

Corrected default value type in the XCreds manifest (#625)

Corrected default value type in the XCreds manifest (#625) #109

Workflow file for this run

name: Update indexes
on:
push:
branches:
- master
jobs:
build:
if: github.repository == 'ProfileCreator/ProfileManifests'
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
ref: master
path: clone
- name: Run updateindexes.py script and commit changes
working-directory: clone
run: |
./updateIndexes.py
git config user.name github-actions
git config user.email github-actions@github.com
git add -A
git commit -am "Update indexes" || true
git push --set-upstream origin master || true