Skip to content

Update CI_update

Update CI_update #4

Workflow file for this run

name: Update BLAS
on:
schedule:
- cron: '0 0 * * 1' # Run every Monday at midnight UTC
push:
branches:
- main
jobs:
update-submodules:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Configure Git
run: |
git config user.email "${{ secrets.GIT_USER_EMAIL }}"
git config user.name "${{ secrets.GIT_USER_NAME }}"
- name: Update BLAS
run: |
git submodule update --recursive --remote
git status
git add src && git commit -m "Update BLAS"
git push origin main