Skip to content

npm run ve:CVM

npm run ve:CVM #361

Workflow file for this run

name: npm run ve:CVM
on:
schedule:
- cron: "0 6 * * *" # 6:00 AM UTC
workflow_dispatch:
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run script
run: npm run ve:CVM
- name: Commit changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "oxSaturn"
git add .
git commit -m "Run ve:CVM"
git push