1
0
Fork 0

Build debian cache once a week

timestamps
dump_stack() 2023-05-12 00:39:50 +00:00
parent efbdc9db36
commit 183b4698dd
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 30 additions and 0 deletions

30
.github/workflows/debian.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Debian
on:
schedule:
- cron: '45 0 * * 5'
jobs:
debian-cache:
name: Build Cache
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: go build
- name: Cache
run: ./out-of-tree --log-level=trace debian cache --path=/home/runner/debian.cache
- name: Archive cache
uses: actions/upload-artifact@v3
with:
name: debian-cache
path: /home/runner/debian.cache
- name: Archive logs
uses: actions/upload-artifact@v3
with:
name: debian-cache-logs
path: /home/runner/.out-of-tree/logs