Use Github Actions for CI, date bump (#16269)
This commit is contained in:
parent
64ebec50dc
commit
87992f3669
5 changed files with 140 additions and 84 deletions
25
.github/workflows/bump-date.yml
vendored
Normal file
25
.github/workflows/bump-date.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#
|
||||
# bump-date.yml
|
||||
# Bump the distribution date once per day
|
||||
#
|
||||
|
||||
name: Bump Distribution Date
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
jobs:
|
||||
bump_date:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- name: Check out bugfix-2.0.x
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: bugfix-2.0.x
|
||||
|
||||
- name: Bump Distribution Date
|
||||
run: source ./buildroot/bin/bump_date
|
||||
Loading…
Add table
Add a link
Reference in a new issue