npm run ve:CVM #361
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |