Update AL-Go System Files #10
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: ' Update AL-Go System Files' | |
on: | |
workflow_dispatch: | |
inputs: | |
templateUrl: | |
description: Template Repository URL (current is https://github.com/freddydk/AL-Go@Secrets2) | |
required: false | |
default: '' | |
directCommit: | |
description: Direct COMMIT (Y/N) | |
required: false | |
default: 'N' | |
permissions: | |
contents: read | |
defaults: | |
run: | |
shell: powershell | |
env: | |
ALGoOrgSettings: ${{ vars.ALGoOrgSettings }} | |
ALGoRepoSettings: ${{ vars.ALGoRepoSettings }} | |
jobs: | |
UpdateALGoSystemFiles: | |
runs-on: [ windows-latest ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Initialize the workflow | |
id: init | |
uses: freddydk/AL-Go/Actions/WorkflowInitialize@Secrets2 | |
with: | |
shell: powershell | |
eventId: "DO0098" | |
- name: Read settings | |
uses: freddydk/AL-Go/Actions/ReadSettings@Secrets2 | |
with: | |
shell: powershell | |
get: templateUrl | |
- name: Read secrets | |
id: ReadSecrets | |
uses: freddydk/AL-Go/Actions/ReadSecrets@Secrets2 | |
with: | |
shell: powershell | |
gitHubSecrets: ${{ toJson(secrets) }} | |
getSecrets: 'ghTokenWorkflow' | |
- name: Override templateUrl | |
env: | |
templateUrl: ${{ github.event.inputs.templateUrl }} | |
run: | | |
$errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 | |
$templateUrl = $ENV:templateUrl | |
if ($templateUrl) { | |
Write-Host "Using Template Url: $templateUrl" | |
Add-Content -Encoding UTF8 -Path $env:GITHUB_ENV -Value "templateUrl=$templateUrl" | |
} | |
- name: Calculate DirectCommit | |
env: | |
directCommit: ${{ github.event.inputs.directCommit }} | |
eventName: ${{ github.event_name }} | |
run: | | |
$errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 | |
$directCommit = $ENV:directCommit | |
Write-Host $ENV:eventName | |
if ($ENV:eventName -eq 'schedule') { | |
Write-Host "Running Update AL-Go System Files on a schedule. Setting DirectCommit = Y" | |
$directCommit = 'Y' | |
} | |
Add-Content -Encoding UTF8 -Path $env:GITHUB_ENV -Value "DirectCommit=$directCommit" | |
- name: Update AL-Go system files | |
uses: freddydk/AL-Go/Actions/CheckForUpdates@Secrets2 | |
with: | |
shell: powershell | |
parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} | |
token: ${{ fromJson(steps.ReadSecrets.outputs.Secrets).ghTokenWorkflow }} | |
Update: Y | |
templateUrl: ${{ env.templateUrl }} | |
directCommit: ${{ env.directCommit }} | |
- name: Finalize the workflow | |
if: always() | |
uses: freddydk/AL-Go/Actions/WorkflowPostProcess@Secrets2 | |
with: | |
shell: powershell | |
eventId: "DO0098" | |
telemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} |