Skip to content

Add profile manifests for Alectrona Patch (#623) #110

Add profile manifests for Alectrona Patch (#623)

Add profile manifests for Alectrona Patch (#623) #110

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