Skip to content

Merge pull request #47 from IITC-CE/modos189-patch-1 #36

Merge pull request #47 from IITC-CE/modos189-patch-1

Merge pull request #47 from IITC-CE/modos189-patch-1 #36

Workflow file for this run

name: Update plugins list
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm install
working-directory: ./tools
- name: Update plugins list
run: npm run update-all
working-directory: ./tools
- name: Commit & Push changes
uses: Andro999b/push@v1.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}