-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 1.08 KB
/
update.yml
File metadata and controls
42 lines (38 loc) · 1.08 KB
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
name: Update daily-live manifests
on:
schedule:
- cron: "0 12,18 * * *"
workflow_dispatch:
jobs:
update-interim-release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: daily-live
token: ${{ secrets.PAT }}
- name: update manifest files
run: |
chmod +x "${GITHUB_WORKSPACE}/.github/interim.sh"
"${GITHUB_WORKSPACE}/.github/interim.sh"
- name: commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update daily-live manifest
update-lts-release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: noble-daily-live
token: ${{ secrets.PAT }}
- name: update manifest files
run: |
chmod +x "${GITHUB_WORKSPACE}/.github/lts.sh"
"${GITHUB_WORKSPACE}/.github/lts.sh"
- name: commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update daily-live manifest