Skip to content

upgrade to latest node and modules #19

upgrade to latest node and modules

upgrade to latest node and modules #19

name: Main Branch Workflow with push
on:
push:
branches: [ main ]
jobs:
build-plugin:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '17'
- name: build ADO pipeline scan plugin
continue-on-error: true
run: |
npm i -g tfx-cli
./plugin-update.sh ${{ secrets.ADO_ORG }} ${{ secrets.ADO_TOKEN }} justBuildIt
- name: commit back to repo
run: |
git config --global user.name 'julz0815'
git config --global user.email '[email protected]'
git add -A
git commit -am "New Plugin Version"
git push --verbose