1
0
Fork 0
out-of-tree/.github/workflows/debian-cache.yml

39 lines
980 B
YAML
Raw Normal View History

2023-05-12 08:13:59 +00:00
name: Debian kernels cache
2023-05-12 00:39:50 +00:00
on:
2023-05-12 01:25:05 +00:00
workflow_dispatch:
2023-05-12 00:39:50 +00:00
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
2023-05-12 07:53:23 +00:00
run: ./out-of-tree --log-level=trace debian cache --path=/home/runner/debian.cache
- name: Install s3cmd
run: sudo apt install s3cmd
- name: Upload cache
2023-05-12 07:54:09 +00:00
run: s3cmd put /home/runner/debian.cache s3://out-of-tree/1.0.0 --host=fra1.digitaloceanspaces.com --access_key=${{ secrets.DIGITALOCEAN_SPACES_ACCESS_KEY }} --secret_key=${{ secrets.DIGITALOCEAN_SPACES_SECRET_KEY }}
2023-05-12 00:39:50 +00:00
- name: Archive cache
uses: actions/upload-artifact@v3
with:
name: debian-cache
path: /home/runner/debian.cache
- name: Archive logs
2023-05-12 07:59:58 +00:00
if: always()
2023-05-12 00:39:50 +00:00
uses: actions/upload-artifact@v3
with:
name: debian-cache-logs
path: /home/runner/.out-of-tree/logs