Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 6d9275e

Browse files
authored
Build SDK every 90 days. (#68)
Even no new change is merged, run workflow every 90 days to keep the code works and artifacts available.
1 parent ba0546c commit 6d9275e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Continuous Integration
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: '0 0 */90 * *'
8+
49

510
jobs:
611
build:
@@ -26,7 +31,7 @@ jobs:
2631
rm $git_sha.zip
2732
- uses: actions/upload-artifact@v2
2833
name: Upload SDK
29-
if: ${{ github.event_name == 'push' }}
34+
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
3035
with:
3136
name: quic-sdk-ubuntu-x64-ci
3237
path: ${{ steps.build-and-test.outputs.git_sha}}

0 commit comments

Comments
 (0)