Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ruijzhan committed Nov 11, 2024
1 parent fd551e4 commit d6572ca
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Daily Make and Commit

on:
schedule:
- cron: '0 0 * * *'
- cron: '0 21 * * *'

jobs:
build:
Expand All @@ -17,15 +17,16 @@ jobs:
- name: Set up cache
uses: actions/cache@v2
with:
path: ~/.cache
path: |
~/.cache
~/.local
key: ${{ runner.os }}-cache-${{ hashFiles('**/makefile') }}
restore-keys: |
${{ runner.os }}-cache-
- name: Set up environment
run: |
sudo apt-get update
sudo apt-get install -y make
sudo apt-get update && sudo apt-get install -y make
- name: Run make
run: make
Expand Down

0 comments on commit d6572ca

Please sign in to comment.