Skip to content

CI

CI #45278

Workflow file for this run

name: CI
on:
schedule:
- cron: "*/30 * * * *"
workflow_dispatch:
jobs:
build:
if: github.repository_owner == 'ItzLevvie'
runs-on: windows-2025
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: true
- run: |
git config --local core.autocrlf true
git config --local user.name "Microsoft GitHub User"
git config --local user.email msftgits@microsoft.com
- 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: |
cd ".\tools\v2.0"
.\launch.ps1 > ..\..\defconfig2
- run: |
git add defconfig2
git commit --message "Update to the latest Microsoft Teams builds"
git push