Merge pull request #3985 from NikCharlebois/Release-1.23.1129.1 #2092
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: AzureCloud - Full-Circle - O365 | |
on: [push] | |
jobs: | |
# This workflow contains a single job called "build" | |
FullCircle-O365: | |
# The type of runner that the job will run on | |
runs-on: windows-latest | |
# Only when run from the main repo | |
if: github.repository == 'microsoft/Microsoft365DSC' | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Install Microsoft365DSC | |
shell: powershell | |
run: | | |
winrm quickconfig -force | |
$source = "./Modules/Microsoft365DSC/" | |
$destination = "C:\Program Files\WindowsPowerShell\Modules" | |
Copy-Item -Path $source -Recurse -Destination $destination -Container -Force | |
Update-M365DSCDependencies | |
- name: Run ReverseDSC | |
shell: powershell | |
env: | |
PUBLIC_USERNAME: ${{ secrets.PUBLIC_USERNAME }} | |
PUBLIC_PASSWORD: ${{ secrets.PUBLIC_PASSWORD }} | |
run: | | |
Set-ExecutionPolicy Unrestricted -Force | |
Get-ChildItem "C:\Program Files\WindowsPowerShell\Modules" -Recurse | Unblock-File | |
$CredPassword = ConvertTo-SecureString $env:PUBLIC_PASSWORD -AsPlainText -Force | |
$Credential = New-Object System.Management.Automation.PSCredential ($env:PUBLIC_USERNAME, $CredPassword) | |
Set-M365DSCTelemetryOption -Enabled $false | |
Export-M365DSCConfiguration -Credential $Credential -Path "." -FileName 'ExtractedSPO.ps1' -Workload 'O365' -Verbose |