From aa5326a08c1505c73802cb9810a20ddc14fe8ac0 Mon Sep 17 00:00:00 2001 From: aholstrup1 Date: Wed, 5 Apr 2023 08:19:12 +0000 Subject: [PATCH] Updated AL-Go System Files --- .github/RELEASENOTES.copy.md | 27 +++++++--- .github/workflows/CICD.yaml | 50 +++++++++---------- .github/workflows/IncrementVersionNumber.yaml | 6 +-- .github/workflows/PullRequestHandler.yaml | 34 ++++++------- .../workflows/UpdateGitHubGoSystemFiles.yaml | 12 ++--- .../.AL-Go/cloudDevEnv.ps1 | 4 +- .../.AL-Go/localDevEnv.ps1 | 4 +- System Application/.AL-Go/cloudDevEnv.ps1 | 4 +- System Application/.AL-Go/localDevEnv.ps1 | 4 +- Test Framework/.AL-Go/cloudDevEnv.ps1 | 4 +- Test Framework/.AL-Go/localDevEnv.ps1 | 4 +- Test Stability Tools/.AL-Go/cloudDevEnv.ps1 | 4 +- Test Stability Tools/.AL-Go/localDevEnv.ps1 | 4 +- 13 files changed, 86 insertions(+), 75 deletions(-) diff --git a/.github/RELEASENOTES.copy.md b/.github/RELEASENOTES.copy.md index 38a9a55870..23a43dfd67 100644 --- a/.github/RELEASENOTES.copy.md +++ b/.github/RELEASENOTES.copy.md @@ -2,11 +2,22 @@ Note that when using the preview version of AL-Go for GitHub, you need to Update your AL-Go system files, as soon as possible when told to do so. +## v3.0 + ### **NOTE:** When upgrading to this version When upgrading to this version form earlier versions of AL-Go for GitHub, you will need to run the _Update AL-Go System Files_ workflow twice if you have the `useProjectDependencies` setting set to _true_. +### Publish to unknown environment +You can now run the **Publish To Environment** workflow without creating the environment in GitHub or settings up-front, just by specifying the name of a single environment in the Environment Name when running the workflow. +Subsequently, if an AuthContext secret hasn't been created for this environment, the Device Code flow authentication will be initiated from the Publish To Environment workflow and you can publish to the new environment without ever creating a secret. +Open Workflow details to get the device Code for authentication in the job summary for the initialize job. + +### Create Online Dev. Environment +When running the **Create Online Dev. Environment** workflow without having the _adminCenterApiCredentials_ secret created, the workflow will intiate the deviceCode flow and allow you to authenticate to the Business Central Admin Center. +Open Workflow details to get the device Code for authentication in the job summary for the initialize job. + ### Issues -- Issue [#391](https://github.com/microsoft/AL-Go/issues/391) Create release action - CreateReleaseBranch error +- Issue #391 Create release action - CreateReleaseBranch error - Issue 434 Building local DevEnv, downloading dependencies: Authentication fails when using "gh auth status" ### Changes to Pull Request Process @@ -24,13 +35,13 @@ Build modes can now be specified per project ## v2.4 ### Issues -- Issue [#171](https://github.com/microsoft/AL-Go/issues/171) create a workspace file when creating a project -- Issue [#356](https://github.com/microsoft/AL-Go/issues/356) Publish to AppSource fails in multi project repo -- Issue [#358](https://github.com/microsoft/AL-Go/issues/358) Publish To Environment Action stopped working in v2.3 -- Issue [#362](https://github.com/microsoft/AL-Go/issues/362) Support for EnableTaskScheduler -- Issue [#360](https://github.com/microsoft/AL-Go/issues/360) Creating a release and deploying from a release branch -- Issue [#371](https://github.com/microsoft/AL-Go/issues/371) 'No previous release found' for builds on release branches -- Issue [#376](https://github.com/microsoft/AL-Go/issues/376) CICD jobs that are triggered by the pull request trigger run directly to an error if title contains quotes +- Issue #171 create a workspace file when creating a project +- Issue #356 Publish to AppSource fails in multi project repo +- Issue #358 Publish To Environment Action stopped working in v2.3 +- Issue #362 Support for EnableTaskScheduler +- Issue #360 Creating a release and deploying from a release branch +- Issue #371 'No previous release found' for builds on release branches +- Issue #376 CICD jobs that are triggered by the pull request trigger run directly to an error if title contains quotes ### Release Branches **NOTE:** Release Branches are now only named after major.minor if the patch value is 0 in the release tag (which must be semver compatible) diff --git a/.github/workflows/CICD.yaml b/.github/workflows/CICD.yaml index caae000ad9..8dc1dcd7c5 100644 --- a/.github/workflows/CICD.yaml +++ b/.github/workflows/CICD.yaml @@ -46,14 +46,14 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0091" - name: Read settings id: ReadSettings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -61,7 +61,7 @@ jobs: - name: Determine Projects To Build id: determineProjectsToBuild - uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v3.0 + uses: aholstrup1/AL-Go-Actions/DetermineProjectsToBuild@main with: shell: powershell maxBuildDepth: ${{ env.workflowDepth }} @@ -80,7 +80,7 @@ jobs: Add-Content -Path $env:GITHUB_OUTPUT -Value "Secrets=$($deliveryTargetSecrets -join ',')" - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -155,14 +155,14 @@ jobs: uses: actions/checkout@v3 - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} get: templateUrl - name: Check for updates to AL-Go system files - uses: microsoft/AL-Go-Actions/CheckForUpdates@v3.0 + uses: aholstrup1/AL-Go-Actions/CheckForUpdates@main with: shell: powershell parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -199,14 +199,14 @@ jobs: path: '.dependencies' - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} project: ${{ matrix.project }} - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -217,7 +217,7 @@ jobs: - name: Run pipeline id: RunPipeline - uses: microsoft/AL-Go-Actions/RunPipeline@v3.0 + uses: aholstrup1/AL-Go-Actions/RunPipeline@main env: BuildMode: ${{ matrix.buildMode }} with: @@ -231,7 +231,7 @@ jobs: - name: Calculate Artifact names id: calculateArtifactsNames - uses: microsoft/AL-Go-Actions/CalculateArtifactNames@v3.0 + uses: aholstrup1/AL-Go-Actions/CalculateArtifactNames@main if: success() || failure() with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} @@ -317,7 +317,7 @@ jobs: - name: Analyze Test Results id: analyzeTestResults if: success() || failure() - uses: microsoft/AL-Go-Actions/AnalyzeTests@v3.0 + uses: aholstrup1/AL-Go-Actions/AnalyzeTests@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -325,7 +325,7 @@ jobs: - name: Cleanup if: always() - uses: microsoft/AL-Go-Actions/PipelineCleanup@v3.0 + uses: aholstrup1/AL-Go-Actions/PipelineCleanup@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -362,14 +362,14 @@ jobs: path: '.dependencies' - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} project: ${{ matrix.project }} - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -380,7 +380,7 @@ jobs: - name: Run pipeline id: RunPipeline - uses: microsoft/AL-Go-Actions/RunPipeline@v3.0 + uses: aholstrup1/AL-Go-Actions/RunPipeline@main env: BuildMode: ${{ matrix.buildMode }} with: @@ -394,7 +394,7 @@ jobs: - name: Calculate Artifact names id: calculateArtifactsNames - uses: microsoft/AL-Go-Actions/CalculateArtifactNames@v3.0 + uses: aholstrup1/AL-Go-Actions/CalculateArtifactNames@main if: success() || failure() with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} @@ -480,7 +480,7 @@ jobs: - name: Analyze Test Results id: analyzeTestResults if: success() || failure() - uses: microsoft/AL-Go-Actions/AnalyzeTests@v3.0 + uses: aholstrup1/AL-Go-Actions/AnalyzeTests@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -488,7 +488,7 @@ jobs: - name: Cleanup if: always() - uses: microsoft/AL-Go-Actions/PipelineCleanup@v3.0 + uses: aholstrup1/AL-Go-Actions/PipelineCleanup@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -520,12 +520,12 @@ jobs: Add-Content -Path $env:GITHUB_OUTPUT -Value "envName=$envName" - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: powershell - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -608,7 +608,7 @@ jobs: Write-Host "projects=$projects" - name: Deploy - uses: microsoft/AL-Go-Actions/Deploy@v3.0 + uses: aholstrup1/AL-Go-Actions/Deploy@main env: AuthContext: ${{ steps.authContext.outputs.authContext }} with: @@ -637,12 +637,12 @@ jobs: path: '.artifacts' - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: powershell - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -661,7 +661,7 @@ jobs: Write-Host "deliveryContext=$deliveryContext" - name: Deliver - uses: microsoft/AL-Go-Actions/Deliver@v3.0 + uses: aholstrup1/AL-Go-Actions/Deliver@main env: deliveryContext: ${{ steps.deliveryContext.outputs.deliveryContext }} with: @@ -681,7 +681,7 @@ jobs: - name: Finalize the workflow id: PostProcess - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowPostProcess@main with: shell: powershell eventId: "DO0091" diff --git a/.github/workflows/IncrementVersionNumber.yaml b/.github/workflows/IncrementVersionNumber.yaml index a7e86c8045..2b0a55c2d6 100644 --- a/.github/workflows/IncrementVersionNumber.yaml +++ b/.github/workflows/IncrementVersionNumber.yaml @@ -36,13 +36,13 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0096" - name: Increment Version Number - uses: microsoft/AL-Go-Actions/IncrementVersionNumber@v3.0 + uses: aholstrup1/AL-Go-Actions/IncrementVersionNumber@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -52,7 +52,7 @@ jobs: - name: Finalize the workflow if: always() - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowPostProcess@main with: shell: powershell eventId: "DO0096" diff --git a/.github/workflows/PullRequestHandler.yaml b/.github/workflows/PullRequestHandler.yaml index 7dca8ba164..adf7b4526c 100644 --- a/.github/workflows/PullRequestHandler.yaml +++ b/.github/workflows/PullRequestHandler.yaml @@ -34,7 +34,7 @@ jobs: lfs: true ref: refs/pull/${{ github.event.number }}/merge - - uses: microsoft/AL-Go-Actions/VerifyPRChanges@v3.0 + - uses: aholstrup1/AL-Go-Actions/VerifyPRChanges@main with: baseSHA: ${{ github.event.pull_request.base.sha }} headSHA: ${{ github.event.pull_request.head.sha }} @@ -61,14 +61,14 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0104" - name: Read settings id: ReadSettings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -76,7 +76,7 @@ jobs: - name: Determine Projects To Build id: determineProjectsToBuild - uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v3.0 + uses: aholstrup1/AL-Go-Actions/DetermineProjectsToBuild@main with: shell: powershell maxBuildDepth: ${{ env.workflowDepth }} @@ -113,14 +113,14 @@ jobs: path: '.dependencies' - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} project: ${{ matrix.project }} - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -131,7 +131,7 @@ jobs: - name: Run pipeline id: RunPipeline - uses: microsoft/AL-Go-Actions/RunPipeline@v3.0 + uses: aholstrup1/AL-Go-Actions/RunPipeline@main env: BuildMode: ${{ matrix.buildMode }} with: @@ -145,7 +145,7 @@ jobs: - name: Calculate Artifact names id: calculateArtifactsNames - uses: microsoft/AL-Go-Actions/CalculateArtifactNames@v3.0 + uses: aholstrup1/AL-Go-Actions/CalculateArtifactNames@main if: success() || failure() with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} @@ -207,7 +207,7 @@ jobs: - name: Analyze Test Results id: analyzeTestResults if: success() || failure() - uses: microsoft/AL-Go-Actions/AnalyzeTests@v3.0 + uses: aholstrup1/AL-Go-Actions/AnalyzeTests@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -215,7 +215,7 @@ jobs: - name: Cleanup if: always() - uses: microsoft/AL-Go-Actions/PipelineCleanup@v3.0 + uses: aholstrup1/AL-Go-Actions/PipelineCleanup@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -253,14 +253,14 @@ jobs: path: '.dependencies' - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} project: ${{ matrix.project }} - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -271,7 +271,7 @@ jobs: - name: Run pipeline id: RunPipeline - uses: microsoft/AL-Go-Actions/RunPipeline@v3.0 + uses: aholstrup1/AL-Go-Actions/RunPipeline@main env: BuildMode: ${{ matrix.buildMode }} with: @@ -285,7 +285,7 @@ jobs: - name: Calculate Artifact names id: calculateArtifactsNames - uses: microsoft/AL-Go-Actions/CalculateArtifactNames@v3.0 + uses: aholstrup1/AL-Go-Actions/CalculateArtifactNames@main if: success() || failure() with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} @@ -347,7 +347,7 @@ jobs: - name: Analyze Test Results id: analyzeTestResults if: success() || failure() - uses: microsoft/AL-Go-Actions/AnalyzeTests@v3.0 + uses: aholstrup1/AL-Go-Actions/AnalyzeTests@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -355,7 +355,7 @@ jobs: - name: Cleanup if: always() - uses: microsoft/AL-Go-Actions/PipelineCleanup@v3.0 + uses: aholstrup1/AL-Go-Actions/PipelineCleanup@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -374,7 +374,7 @@ jobs: - name: Finalize the workflow id: PostProcess - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowPostProcess@main with: shell: powershell eventId: "DO0104" diff --git a/.github/workflows/UpdateGitHubGoSystemFiles.yaml b/.github/workflows/UpdateGitHubGoSystemFiles.yaml index e37e509f69..e933619218 100644 --- a/.github/workflows/UpdateGitHubGoSystemFiles.yaml +++ b/.github/workflows/UpdateGitHubGoSystemFiles.yaml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: templateUrl: - description: Template Repository URL (current is https://github.com/microsoft/AL-Go-PTE@preview) + description: Template Repository URL (current is https://github.com/aholstrup1/AL-Go-PTE@main) required: false default: '' directCommit: @@ -32,20 +32,20 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0098" - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} get: keyVaultName,ghTokenWorkflowSecretName,templateUrl - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.0 + uses: aholstrup1/AL-Go-Actions/ReadSecrets@main env: secrets: ${{ toJson(secrets) }} with: @@ -82,7 +82,7 @@ jobs: Add-Content -Path $env:GITHUB_ENV -Value "DirectCommit=$directCommit" - name: Update AL-Go system files - uses: microsoft/AL-Go-Actions/CheckForUpdates@v3.0 + uses: aholstrup1/AL-Go-Actions/CheckForUpdates@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -93,7 +93,7 @@ jobs: - name: Finalize the workflow if: always() - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.0 + uses: aholstrup1/AL-Go-Actions/WorkflowPostProcess@main with: shell: powershell eventId: "DO0098" diff --git a/System Application Modules/.AL-Go/cloudDevEnv.ps1 b/System Application Modules/.AL-Go/cloudDevEnv.ps1 index da6d476ccc..b96c654732 100644 --- a/System Application Modules/.AL-Go/cloudDevEnv.ps1 +++ b/System Application Modules/.AL-Go/cloudDevEnv.ps1 @@ -18,10 +18,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/System Application Modules/.AL-Go/localDevEnv.ps1 b/System Application Modules/.AL-Go/localDevEnv.ps1 index 11a5976670..64327f8665 100644 --- a/System Application Modules/.AL-Go/localDevEnv.ps1 +++ b/System Application Modules/.AL-Go/localDevEnv.ps1 @@ -21,10 +21,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/System Application/.AL-Go/cloudDevEnv.ps1 b/System Application/.AL-Go/cloudDevEnv.ps1 index da6d476ccc..b96c654732 100644 --- a/System Application/.AL-Go/cloudDevEnv.ps1 +++ b/System Application/.AL-Go/cloudDevEnv.ps1 @@ -18,10 +18,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/System Application/.AL-Go/localDevEnv.ps1 b/System Application/.AL-Go/localDevEnv.ps1 index 11a5976670..64327f8665 100644 --- a/System Application/.AL-Go/localDevEnv.ps1 +++ b/System Application/.AL-Go/localDevEnv.ps1 @@ -21,10 +21,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Framework/.AL-Go/cloudDevEnv.ps1 b/Test Framework/.AL-Go/cloudDevEnv.ps1 index da6d476ccc..b96c654732 100644 --- a/Test Framework/.AL-Go/cloudDevEnv.ps1 +++ b/Test Framework/.AL-Go/cloudDevEnv.ps1 @@ -18,10 +18,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Framework/.AL-Go/localDevEnv.ps1 b/Test Framework/.AL-Go/localDevEnv.ps1 index 11a5976670..64327f8665 100644 --- a/Test Framework/.AL-Go/localDevEnv.ps1 +++ b/Test Framework/.AL-Go/localDevEnv.ps1 @@ -21,10 +21,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 b/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 index da6d476ccc..b96c654732 100644 --- a/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 +++ b/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 @@ -18,10 +18,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Stability Tools/.AL-Go/localDevEnv.ps1 b/Test Stability Tools/.AL-Go/localDevEnv.ps1 index 11a5976670..64327f8665 100644 --- a/Test Stability Tools/.AL-Go/localDevEnv.ps1 +++ b/Test Stability Tools/.AL-Go/localDevEnv.ps1 @@ -21,10 +21,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.0/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go-Actions/main/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local