-
Notifications
You must be signed in to change notification settings - Fork 32
41 lines (32 loc) · 945 Bytes
/
CI.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
name: CI
on:
schedule:
- cron: "*/30 * * * *"
workflow_dispatch:
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/[email protected]
- run: |
git config --local core.autocrlf true
git config --local user.name "Microsoft GitHub User"
git config --local user.email [email protected]
- run: |
cd .\tools\v1.0
.\launch.ps1 > ..\..\defconfig
- run: |
git add defconfig
git commit --message "Update to the latest Microsoft Teams builds"
git push
- run: |
git add .github\ci\v1.0
git commit --message "Update to the latest CI files"
git push
- run: |
cd ".\tools\v1.0 + v2.0"
.\launch.ps1 > ..\..\defconfig2
- run: |
git add defconfig2
git commit --message "Update to the latest Microsoft Teams builds"
git push