Skip to content

Update auto_bsp.yaml #9

Update auto_bsp.yaml

Update auto_bsp.yaml #9

Workflow file for this run

name: auto_bsp
on:
push:
branches: [cloud]
jobs:
auto_bsp:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: |
npm ci
npm run build_bsp
- name: Commit Changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add src
git commit -m "auto bsp update"
- name: Switch to Branch standard
run: git checkout -b standard
- name: Push Changes
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: standard
force: true