Make MSUpdate w1064 by @xrgzs - UUP - Multi #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MSUpdate | |
run-name: Make MSUpdate ${{ inputs.makeversion }} by @${{ github.actor }} ${{ inputs.UpdateFromUUP == true && '- UUP' }} ${{ inputs.MultiEdition == true && '- Multi' }} | |
on: | |
workflow_dispatch: | |
inputs: | |
makeversion: | |
description: 'Target OS Version' | |
required: true | |
type: choice | |
options: | |
- w1164 | |
- w1064 | |
- w10lt2164 | |
- w10lt1964 | |
- w10lt1664 | |
UpdateFromUUP: | |
description: 'Update from UUP' | |
required: false | |
default: false | |
type: boolean | |
MultiEdition: | |
description: 'Convert Multi-Editions' | |
required: false | |
default: true | |
type: boolean | |
jobs: | |
msupdate: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Get rclone Config | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ vars.RCLONE_REPO }} | |
token: ${{ secrets.RCLONE_TOKEN }} | |
path: bin | |
- name: Change DNS Server | |
shell: pwsh | |
run: | | |
$newDnsServers = @('1.1.1.1', '8.8.8.8') | |
$networkAdapters = Get-NetAdapter | Where-Object { $_.Status -eq 'Up' } | |
foreach ($adapter in $networkAdapters) { | |
Set-DnsClientServerAddress -InterfaceIndex $adapter.ifIndex -ResetServerAddresses | |
Set-DnsClientServerAddress -InterfaceIndex $adapter.ifIndex -ServerAddresses $newDnsServers | |
} | |
ipconfig /flushdns | |
- name: Big Task | |
shell: pwsh | |
run: | | |
$MakeVersion = [string] "${{ inputs.MakeVersion }}" | |
$UpdateFromUUP = [bool] "${{ inputs.UpdateFromUUP }}" | |
$MultiEdition = [bool] "${{ inputs.MultiEdition }}" | |
.\msupdate.ps1 | |
- name: Upload ISO to OneDrive | |
shell: pwsh | |
run: | | |
# Installing dependencies | |
if (-not (Test-Path -Path ".\bin\rclone.conf")) { | |
Write-Error "rclone conf not found" | |
} | |
if (-not (Test-Path -Path ".\bin\rclone.exe")) { | |
Write-Host "rclone not found, downloading..." | |
Invoke-WebRequest -Uri 'https://downloads.rclone.org/rclone-current-windows-amd64.zip' -outfile .\temp\rclone.zip | |
Expand-Archive -Path .\temp\rclone.zip -DestinationPath .\temp\ -Force | |
Copy-Item -Path .\temp\rclone-*-windows-amd64\rclone.exe -Destination .\bin\rclone.exe | |
} | |
# upload to cloud | |
Get-ChildItem -Path "./*.iso" -File | ForEach-Object { | |
.\bin\rclone.exe copy $_.FullName "${{ vars.RCLONE_PATH }}" --progress | |
} |