-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
43 lines (38 loc) · 1.15 KB
/
cron-debian.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Copyright (C) 2020-2024 Lin Song <[email protected]>
#
# This work is licensed under the Creative Commons Attribution-ShareAlike 3.0
# Unported License: http://creativecommons.org/licenses/by-sa/3.0/
#
# Attribution required: please include my name in any derivative and let me
# know how you have improved it!
name: build debian cron
on:
schedule:
- cron: '25 2,14 * * *'
jobs:
check_update:
if: github.repository_owner == 'hwdsl2'
uses: ./.github/workflows/check_update.yml
with:
os_type: debian
secrets:
CACHE_NAME: ${{ secrets.CACHE_NAME }}
vpn_test:
needs: check_update
if: needs.check_update.outputs.should_test == 'true'
uses: ./.github/workflows/vpn_test.yml
with:
os_type: debian
buildx:
needs: [check_update, vpn_test]
if: needs.check_update.outputs.should_update == 'true'
uses: ./.github/workflows/buildx.yml
with:
os_type: debian
secrets:
CACHE_NAME: ${{ secrets.CACHE_NAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
QUAY_USER: ${{ secrets.QUAY_USER }}
QUAY_TOKEN: ${{ secrets.QUAY_TOKEN }}
BUILD_ONLY: ${{ secrets.BUILD_ONLY }}