microsoft / AL-Go

The plug-and-play DevOps solution for Business Central app development on GitHub
MIT License
279 stars 114 forks source link

Delevery To Environment #767

Open mabessghaier opened 11 months ago

mabessghaier commented 11 months ago

Hi Freddy,

We need to move all our Release Pipelines from DevOps to Github, we have 55 customers pipelines every release contain 3 environments (SandboxDev, SandoxQA and Production),

image

How can I keep the same structure with AL-Go,

jonaswre commented 11 months ago

Hi,

You could create a Repo per Customer and every Repo can have your 3 Environments.

This would allow you to publish in all three environments.

But to understand how your current release pipelines work I need a bit more information.

How do you release? In what environments do you Continues Deliver to? Do you currently have gates between the environments.

What do you do with the environments?

We currently only use 2 Environments per Customer. One where we Continuous Deliver from main. And Production where. We publish releases too. This has been working quite well. The other sandboxes are for developers if they need to test, develop, debug things with customer data.

freddydk commented 11 months ago

As @jonaswre writes, you could have a repository for each customer.

You wouldn't have the source for all apps in each repository - you would have those in a different repo and then just have a single PTE with dependencies to the apps being used by the individual customer.

You could also have all environments defined in the same repository, but you might be loosing the overview of which customer have what updates.

mabessghaier commented 11 months ago

@jonaswre we have the same PTE need to be deployed to all our customer creating a Repo per Customer for the same PTE it is not a good approche,

@freddydk you said I could have all environments defined in the same repository, how I can make a difference between Customer A / Production and customer B / production. because all the customers have the same environment nomenclature. (Production, SandboxQA....)

jonaswre commented 11 months ago

Ahh okay I misunderstood the initial question.

So I that case you could use the way described by @freddydk. Have a Repo per Customer and then one Repo for the App. The customer apps can the pull the dependency through the regular dependency handling.

Putting all customer environments in one repo makes it way harder to maintain permissions.

One drawback of the way @freddydk described is, that you would need to run the pipelines manually when you update the dependency.

But that could be automated through the API.

@freddydk you said I could have all environments defined in the same repository, how I can make a difference between Customer A / Production and customer B / production. because all the customers have the same environment nomenclature. (Production, SandboxQA....)

Github Environmentname and BC Environmentname don't need to be the same.

I'm on the phone right now. But you can find that if you check out the AL-Go Settings Documentation.

freddydk commented 11 months ago

In the same repo, you can define environments like:

CustomerA-PROD CustomerA-QA CustomerB-PROD CustomerB-QA etc. Then you need settings for each environment:

DeployToCustomerA-PROD {
  EnvironmentName: real environment name (ex. PROD)
  AuthContext: CustomerA_AuthContext
  ContinuousDeployment: false
}
DeployToCustomerA-QA {
  EnvironmentName: real environment name (ex. QA)
  AuthContext: CustomerA_AuthContext
  ContinuousDeployment: true
}

etc. (note: the above is not valid json - it needs to be valid json)

See https://aka.ms/algosettings#deployto

This is supported in the latest version.

mabessghaier commented 11 months ago

Thank you @jonaswre and @freddydk it's works now

mabessghaier commented 11 months ago

Sorry Freddy,

Publish to Environment fails (see output below ) any ideas ?

image

image

image

2023-10-17T15:06:02.7609287Z Requested labels: windows-latest 2023-10-17T15:06:02.7609707Z Job defined at: gestisoft-DevProduits/GoGestisoft/.github/workflows/PublishToEnvironment.yaml@refs/heads/Release 2023-10-17T15:06:02.7609895Z Waiting for a runner to pick up this job... 2023-10-17T15:06:03.6542982Z Job is waiting for a hosted runner to come online. 2023-10-17T15:06:11.3305497Z Job is about to start running on the hosted runner: GitHub Actions 1 (hosted) 2023-10-17T15:06:16.2192985Z Current runner version: '2.310.2' 2023-10-17T15:06:16.2226267Z ##[group]Operating System 2023-10-17T15:06:16.2227093Z Microsoft Windows Server 2022 2023-10-17T15:06:16.2227750Z 10.0.20348 2023-10-17T15:06:16.2228199Z Datacenter 2023-10-17T15:06:16.2228716Z ##[endgroup] 2023-10-17T15:06:16.2229194Z ##[group]Runner Image 2023-10-17T15:06:16.2229757Z Image: windows-2022 2023-10-17T15:06:16.2230327Z Version: 20231002.1.0 2023-10-17T15:06:16.2231585Z Included Software: https://github.com/actions/runner-images/blob/win22/20231002.1/images/win/Windows2022-Readme.md 2023-10-17T15:06:16.2233384Z Image Release: https://github.com/actions/runner-images/releases/tag/win22%2F20231002.1 2023-10-17T15:06:16.2234456Z ##[endgroup] 2023-10-17T15:06:16.2235012Z ##[group]Runner Image Provisioner 2023-10-17T15:06:16.2235643Z 2.0.310.1 2023-10-17T15:06:16.2236105Z ##[endgroup] 2023-10-17T15:06:16.2237370Z ##[group]GITHUB_TOKEN Permissions 2023-10-17T15:06:16.2239488Z Actions: read 2023-10-17T15:06:16.2240261Z Contents: read 2023-10-17T15:06:16.2240858Z Metadata: read 2023-10-17T15:06:16.2241367Z ##[endgroup] 2023-10-17T15:06:16.2244160Z Secret source: Actions 2023-10-17T15:06:16.2244881Z Prepare workflow directory 2023-10-17T15:06:16.3565323Z Prepare all required actions 2023-10-17T15:06:16.3778348Z Getting action download info 2023-10-17T15:06:16.5733196Z Download action repository 'actions/checkout@v3' (SHA:f43a0e5ff2bd294095638e18286ca9a3d1956744) 2023-10-17T15:06:16.9992788Z Download action repository 'microsoft/AL-Go-Actions@v3.3' (SHA:8cc4e54720b1dba5fca86afc6796a19f2599a4bb) 2023-10-17T15:06:17.5095197Z Complete job name: Deploy to DemoQA 2023-10-17T15:06:17.6735733Z ##[group]Run actions/checkout@v3 2023-10-17T15:06:17.6736511Z with: 2023-10-17T15:06:17.6736989Z repository: gestisoft-DevProduits/GoGestisoft 2023-10-17T15:06:17.6737937Z token: 2023-10-17T15:06:17.6738347Z ssh-strict: 2023-10-17T15:06:17.6738808Z persist-credentials: 2023-10-17T15:06:17.6739286Z clean: 2023-10-17T15:06:17.6739732Z sparse-checkout-cone-mode: 2023-10-17T15:06:17.6740836Z fetch-depth: 1 2023-10-17T15:06:17.6741246Z fetch-tags: false 2023-10-17T15:06:17.6741640Z lfs: false 2023-10-17T15:06:17.6742002Z submodules: false 2023-10-17T15:06:17.6742476Z set-safe-directory: 2023-10-17T15:06:17.6742925Z env: 2023-10-17T15:06:17.6743279Z ALGoOrgSettings: 2023-10-17T15:06:17.6743719Z ALGoRepoSettings: 2023-10-17T15:06:17.6744131Z deviceCode: 2023-10-17T15:06:17.6744506Z ##[endgroup] 2023-10-17T15:06:18.3192277Z Syncing repository: gestisoft-DevProduits/GoGestisoft 2023-10-17T15:06:18.3328195Z ##[group]Getting Git version info 2023-10-17T15:06:18.3331508Z Working directory is 'D:\a\GoGestisoft\GoGestisoft' 2023-10-17T15:06:18.7865172Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-10-17T15:06:18.8544140Z git version 2.42.0.windows.2 2023-10-17T15:06:18.8570980Z ##[endgroup] 2023-10-17T15:06:18.8597013Z Temporarily overriding HOME='D:\a_temp\758c9bd0-c8c4-4ccf-89a3-282407320a6a' before making global git config changes 2023-10-17T15:06:18.8598859Z Adding repository directory to the temporary git global config as a safe directory 2023-10-17T15:06:18.8618796Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\GoGestisoft\GoGestisoft 2023-10-17T15:06:19.0270359Z Deleting the contents of 'D:\a\GoGestisoft\GoGestisoft' 2023-10-17T15:06:19.0271616Z ##[group]Initializing the repository 2023-10-17T15:06:19.0272430Z [command]"C:\Program Files\Git\bin\git.exe" init D:\a\GoGestisoft\GoGestisoft 2023-10-17T15:06:19.1438767Z Initialized empty Git repository in D:/a/GoGestisoft/GoGestisoft/.git/ 2023-10-17T15:06:19.1470269Z [command]"C:\Program Files\Git\bin\git.exe" remote add origin https://github.com/gestisoft-DevProduits/GoGestisoft 2023-10-17T15:06:19.2350987Z ##[endgroup] 2023-10-17T15:06:19.2351862Z ##[group]Disabling automatic garbage collection 2023-10-17T15:06:19.2361065Z [command]"C:\Program Files\Git\bin\git.exe" config --local gc.auto 0 2023-10-17T15:06:19.2670877Z ##[endgroup] 2023-10-17T15:06:19.2671566Z ##[group]Setting up auth 2023-10-17T15:06:19.2686425Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core.sshCommand 2023-10-17T15:06:19.2993538Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-10-17T15:06:21.7017377Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader 2023-10-17T15:06:21.7330589Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-10-17T15:06:22.2014397Z [command]"C:\Program Files\Git\bin\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic *" 2023-10-17T15:06:22.2335098Z ##[endgroup] 2023-10-17T15:06:22.2335866Z ##[group]Fetching the repository 2023-10-17T15:06:22.2382294Z [command]"C:\Program Files\Git\bin\git.exe" -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +db116d0934877a7b9bfcdfb4d28c40275bec6ff2:refs/remotes/origin/Release 2023-10-17T15:06:24.7279433Z remote: Enumerating objects: 250, done.
2023-10-17T15:06:24.7280561Z remote: Counting objects: 0% (1/250)
2023-10-17T15:06:24.7287491Z remote: Counting objects: 1% (3/250)
2023-10-17T15:06:24.7290366Z remote: Counting objects: 2% (5/250)
2023-10-17T15:06:24.7291127Z remote: Counting objects: 3% (8/250)
2023-10-17T15:06:24.7291822Z remote: Counting objects: 4% (10/250)
2023-10-17T15:06:24.7292522Z remote: Counting objects: 5% (13/250)
2023-10-17T15:06:24.7293205Z remote: Counting objects: 6% (15/250)
2023-10-17T15:06:24.7293917Z remote: Counting objects: 7% (18/250)
2023-10-17T15:06:24.7294597Z remote: Counting objects: 8% (20/250)
2023-10-17T15:06:24.7295278Z remote: Counting objects: 9% (23/250)
2023-10-17T15:06:24.7295982Z remote: Counting objects: 10% (25/250)
2023-10-17T15:06:24.7296672Z remote: Counting objects: 11% (28/250)
2023-10-17T15:06:24.7297363Z remote: Counting objects: 12% (30/250)
2023-10-17T15:06:24.7298040Z remote: Counting objects: 13% (33/250)
2023-10-17T15:06:24.7298724Z remote: Counting objects: 14% (35/250)
2023-10-17T15:06:24.7299401Z remote: Counting objects: 15% (38/250)
2023-10-17T15:06:24.7300081Z remote: Counting objects: 16% (40/250)
2023-10-17T15:06:24.7300753Z remote: Counting objects: 17% (43/250)
2023-10-17T15:06:24.7301439Z remote: Counting objects: 18% (45/250)
2023-10-17T15:06:24.7302149Z remote: Counting objects: 19% (48/250)
2023-10-17T15:06:24.7302831Z remote: Counting objects: 20% (50/250)
2023-10-17T15:06:24.7303501Z remote: Counting objects: 21% (53/250)
2023-10-17T15:06:24.7304187Z remote: Counting objects: 22% (55/250)
2023-10-17T15:06:24.7304862Z remote: Counting objects: 23% (58/250)
2023-10-17T15:06:24.7305532Z remote: Counting objects: 24% (60/250)
2023-10-17T15:06:24.7306226Z remote: Counting objects: 25% (63/250)
2023-10-17T15:06:24.7306953Z remote: Counting objects: 26% (65/250)
2023-10-17T15:06:24.7307629Z remote: Counting objects: 27% (68/250)
2023-10-17T15:06:24.7308306Z remote: Counting objects: 28% (70/250)
2023-10-17T15:06:24.7308985Z remote: Counting objects: 29% (73/250)
2023-10-17T15:06:24.7309652Z remote: Counting objects: 30% (75/250)
2023-10-17T15:06:24.7310325Z remote: Counting objects: 31% (78/250)
2023-10-17T15:06:24.7311080Z remote: Counting objects: 32% (80/250)
2023-10-17T15:06:24.7312775Z remote: Counting objects: 33% (83/250)
2023-10-17T15:06:24.7313451Z remote: Counting objects: 34% (85/250)
2023-10-17T15:06:24.7314149Z remote: Counting objects: 35% (88/250)
2023-10-17T15:06:24.7314995Z remote: Counting objects: 36% (90/250)
2023-10-17T15:06:24.7315783Z remote: Counting objects: 37% (93/250)
2023-10-17T15:06:24.7316558Z remote: Counting objects: 38% (95/250)
2023-10-17T15:06:24.7317453Z remote: Counting objects: 39% (98/250)
2023-10-17T15:06:24.7318238Z remote: Counting objects: 40% (100/250)
2023-10-17T15:06:24.7319109Z remote: Counting objects: 41% (103/250)
2023-10-17T15:06:24.7319902Z remote: Counting objects: 42% (105/250)
2023-10-17T15:06:24.7320743Z remote: Counting objects: 43% (108/250)
2023-10-17T15:06:24.7321547Z remote: Counting objects: 44% (110/250)
2023-10-17T15:06:24.7322339Z remote: Counting objects: 45% (113/250)
2023-10-17T15:06:24.7323159Z remote: Counting objects: 46% (115/250)
2023-10-17T15:06:24.7323998Z remote: Counting objects: 47% (118/250)
2023-10-17T15:06:24.7324840Z remote: Counting objects: 48% (120/250)
2023-10-17T15:06:24.7325622Z remote: Counting objects: 49% (123/250)
2023-10-17T15:06:24.7326465Z remote: Counting objects: 50% (125/250)
2023-10-17T15:06:24.7327300Z remote: Counting objects: 51% (128/250)
2023-10-17T15:06:24.7328092Z remote: Counting objects: 52% (130/250)
2023-10-17T15:06:24.7328876Z remote: Counting objects: 53% (133/250)
2023-10-17T15:06:24.7330448Z remote: Counting objects: 54% (135/250)
2023-10-17T15:06:24.7331262Z remote: Counting objects: 55% (138/250)
2023-10-17T15:06:24.7332088Z remote: Counting objects: 56% (140/250)
2023-10-17T15:06:24.7332919Z remote: Counting objects: 57% (143/250)
2023-10-17T15:06:24.7333777Z remote: Counting objects: 58% (145/250)
2023-10-17T15:06:24.7334646Z remote: Counting objects: 59% (148/250)
2023-10-17T15:06:24.7335439Z remote: Counting objects: 60% (150/250)
2023-10-17T15:06:24.7336356Z remote: Counting objects: 61% (153/250)
2023-10-17T15:06:24.7337140Z remote: Counting objects: 62% (155/250)
2023-10-17T15:06:24.7337941Z remote: Counting objects: 63% (158/250)
2023-10-17T15:06:24.7338730Z remote: Counting objects: 64% (160/250)
2023-10-17T15:06:24.7339582Z remote: Counting objects: 65% (163/250)
2023-10-17T15:06:24.7340376Z remote: Counting objects: 66% (165/250)
2023-10-17T15:06:24.7341155Z remote: Counting objects: 67% (168/250)
2023-10-17T15:06:24.7341986Z remote: Counting objects: 68% (170/250)
2023-10-17T15:06:24.7342762Z remote: Counting objects: 69% (173/250)
2023-10-17T15:06:24.7343553Z remote: Counting objects: 70% (175/250)
2023-10-17T15:06:24.7344333Z remote: Counting objects: 71% (178/250)
2023-10-17T15:06:24.7345167Z remote: Counting objects: 72% (180/250)
2023-10-17T15:06:24.7345966Z remote: Counting objects: 73% (183/250)
2023-10-17T15:06:24.7346748Z remote: Counting objects: 74% (185/250)
2023-10-17T15:06:24.7347628Z remote: Counting objects: 75% (188/250)
2023-10-17T15:06:24.7348349Z remote: Counting objects: 76% (190/250)
2023-10-17T15:06:24.7349033Z remote: Counting objects: 77% (193/250)
2023-10-17T15:06:24.7349723Z remote: Counting objects: 78% (195/250)
2023-10-17T15:06:24.7350459Z remote: Counting objects: 79% (198/250)
2023-10-17T15:06:24.7351274Z remote: Counting objects: 80% (200/250)
2023-10-17T15:06:24.7351963Z remote: Counting objects: 81% (203/250)
2023-10-17T15:06:24.7352642Z remote: Counting objects: 82% (205/250)
2023-10-17T15:06:24.7353374Z remote: Counting objects: 83% (208/250)
2023-10-17T15:06:24.7354059Z remote: Counting objects: 84% (210/250)
2023-10-17T15:06:24.7354926Z remote: Counting objects: 85% (213/250)
2023-10-17T15:06:24.7355651Z remote: Counting objects: 86% (215/250)
2023-10-17T15:06:24.7356348Z remote: Counting objects: 87% (218/250)
2023-10-17T15:06:24.7357033Z remote: Counting objects: 88% (220/250)
2023-10-17T15:06:24.7357710Z remote: Counting objects: 89% (223/250)
2023-10-17T15:06:24.7358458Z remote: Counting objects: 90% (225/250)
2023-10-17T15:06:24.7359150Z remote: Counting objects: 91% (228/250)
2023-10-17T15:06:24.7359875Z remote: Counting objects: 92% (230/250)
2023-10-17T15:06:24.7360604Z remote: Counting objects: 93% (233/250)
2023-10-17T15:06:24.7361373Z remote: Counting objects: 94% (235/250)
2023-10-17T15:06:24.7362129Z remote: Counting objects: 95% (238/250)
2023-10-17T15:06:24.7362883Z remote: Counting objects: 96% (240/250)
2023-10-17T15:06:24.7363630Z remote: Counting objects: 97% (243/250)
2023-10-17T15:06:24.7364333Z remote: Counting objects: 98% (245/250)
2023-10-17T15:06:24.7365017Z remote: Counting objects: 99% (248/250)
2023-10-17T15:06:24.7365765Z remote: Counting objects: 100% (250/250)
2023-10-17T15:06:24.7366490Z remote: Counting objects: 100% (250/250), done.
2023-10-17T15:06:24.7367252Z remote: Compressing objects: 0% (1/220)
2023-10-17T15:06:24.7368036Z remote: Compressing objects: 1% (3/220)
2023-10-17T15:06:24.7368760Z remote: Compressing objects: 2% (5/220)
2023-10-17T15:06:24.7369499Z remote: Compressing objects: 3% (7/220)
2023-10-17T15:06:24.7370326Z remote: Compressing objects: 4% (9/220)
2023-10-17T15:06:24.7371113Z remote: Compressing objects: 5% (11/220)
2023-10-17T15:06:24.7371863Z remote: Compressing objects: 6% (14/220)
2023-10-17T15:06:24.7372611Z remote: Compressing objects: 7% (16/220)
2023-10-17T15:06:24.7373351Z remote: Compressing objects: 8% (18/220)
2023-10-17T15:06:24.7374170Z remote: Compressing objects: 9% (20/220)
2023-10-17T15:06:24.7374909Z remote: Compressing objects: 10% (22/220)
2023-10-17T15:06:24.7375633Z remote: Compressing objects: 11% (25/220)
2023-10-17T15:06:24.7376404Z remote: Compressing objects: 12% (27/220)
2023-10-17T15:06:24.7377123Z remote: Compressing objects: 13% (29/220)
2023-10-17T15:06:24.7377841Z remote: Compressing objects: 14% (31/220)
2023-10-17T15:06:24.7378598Z remote: Compressing objects: 15% (33/220)
2023-10-17T15:06:24.7379383Z remote: Compressing objects: 16% (36/220)
2023-10-17T15:06:24.7380118Z remote: Compressing objects: 17% (38/220)
2023-10-17T15:06:24.7380872Z remote: Compressing objects: 18% (40/220)
2023-10-17T15:06:24.7381680Z remote: Compressing objects: 19% (42/220)
2023-10-17T15:06:24.7382420Z remote: Compressing objects: 20% (44/220)
2023-10-17T15:06:24.7383140Z remote: Compressing objects: 21% (47/220)
2023-10-17T15:06:24.7383881Z remote: Compressing objects: 22% (49/220)
2023-10-17T15:06:24.7384635Z remote: Compressing objects: 23% (51/220)
2023-10-17T15:06:24.7385380Z remote: Compressing objects: 24% (53/220)
2023-10-17T15:06:24.7386101Z remote: Compressing objects: 25% (55/220)
2023-10-17T15:06:24.7386817Z remote: Compressing objects: 26% (58/220)
2023-10-17T15:06:24.7387599Z remote: Compressing objects: 27% (60/220)
2023-10-17T15:06:24.7388322Z remote: Compressing objects: 28% (62/220)
2023-10-17T15:06:24.7389053Z remote: Compressing objects: 29% (64/220)
2023-10-17T15:06:24.7389811Z remote: Compressing objects: 30% (66/220)
2023-10-17T15:06:24.7390521Z remote: Compressing objects: 31% (69/220)
2023-10-17T15:06:24.7391253Z remote: Compressing objects: 32% (71/220)
2023-10-17T15:06:24.7391973Z remote: Compressing objects: 33% (73/220)
2023-10-17T15:06:24.7392972Z remote: Compressing objects: 34% (75/220)
2023-10-17T15:06:24.7393714Z remote: Compressing objects: 35% (77/220)
2023-10-17T15:06:24.7394429Z remote: Compressing objects: 36% (80/220)
2023-10-17T15:06:24.7395221Z remote: Compressing objects: 37% (82/220)
2023-10-17T15:06:24.7395936Z remote: Compressing objects: 38% (84/220)
2023-10-17T15:06:24.7396663Z remote: Compressing objects: 39% (86/220)
2023-10-17T15:06:24.7397381Z remote: Compressing objects: 40% (88/220)
2023-10-17T15:06:24.7398151Z remote: Compressing objects: 41% (91/220)
2023-10-17T15:06:24.7398887Z remote: Compressing objects: 42% (93/220)
2023-10-17T15:06:24.7399606Z remote: Compressing objects: 43% (95/220)
2023-10-17T15:06:24.7400380Z remote: Compressing objects: 44% (97/220)
2023-10-17T15:06:24.7401132Z remote: Compressing objects: 45% (99/220)
2023-10-17T15:06:24.7401867Z remote: Compressing objects: 46% (102/220)
2023-10-17T15:06:24.7402610Z remote: Compressing objects: 47% (104/220)
2023-10-17T15:06:24.7403402Z remote: Compressing objects: 48% (106/220)
2023-10-17T15:06:24.7404138Z remote: Compressing objects: 49% (108/220)
2023-10-17T15:06:24.7404881Z remote: Compressing objects: 50% (110/220)
2023-10-17T15:06:24.7405623Z remote: Compressing objects: 51% (113/220)
2023-10-17T15:06:24.7406420Z remote: Compressing objects: 52% (115/220)
2023-10-17T15:06:24.7407174Z remote: Compressing objects: 53% (117/220)
2023-10-17T15:06:24.7408030Z remote: Compressing objects: 54% (119/220)
2023-10-17T15:06:24.7408895Z remote: Compressing objects: 55% (121/220)
2023-10-17T15:06:24.7409631Z remote: Compressing objects: 56% (124/220)
2023-10-17T15:06:24.7410353Z remote: Compressing objects: 57% (126/220)
2023-10-17T15:06:24.7411158Z remote: Compressing objects: 58% (128/220)
2023-10-17T15:06:24.7411960Z remote: Compressing objects: 59% (130/220)
2023-10-17T15:06:24.7412699Z remote: Compressing objects: 60% (132/220)
2023-10-17T15:06:24.7413465Z remote: Compressing objects: 61% (135/220)
2023-10-17T15:06:24.7414233Z remote: Compressing objects: 62% (137/220)
2023-10-17T15:06:24.7414987Z remote: Compressing objects: 63% (139/220)
2023-10-17T15:06:24.7415725Z remote: Compressing objects: 64% (141/220)
2023-10-17T15:06:24.7416467Z remote: Compressing objects: 65% (143/220)
2023-10-17T15:06:24.7417295Z remote: Compressing objects: 66% (146/220)
2023-10-17T15:06:24.7418021Z remote: Compressing objects: 67% (148/220)
2023-10-17T15:06:24.7418763Z remote: Compressing objects: 68% (150/220)
2023-10-17T15:06:24.7419487Z remote: Compressing objects: 69% (152/220)
2023-10-17T15:06:24.7420252Z remote: Compressing objects: 70% (154/220)
2023-10-17T15:06:24.7421025Z remote: Compressing objects: 71% (157/220)
2023-10-17T15:06:24.7421755Z remote: Compressing objects: 72% (159/220)
2023-10-17T15:06:24.7422547Z remote: Compressing objects: 73% (161/220)
2023-10-17T15:06:24.7423341Z remote: Compressing objects: 74% (163/220)
2023-10-17T15:06:24.7424071Z remote: Compressing objects: 75% (165/220)
2023-10-17T15:06:24.7424810Z remote: Compressing objects: 76% (168/220)
2023-10-17T15:06:24.7586655Z remote: Compressing objects: 77% (170/220)
2023-10-17T15:06:24.7587411Z remote: Compressing objects: 78% (172/220)
2023-10-17T15:06:24.7588112Z remote: Compressing objects: 79% (174/220)
2023-10-17T15:06:24.7588768Z remote: Compressing objects: 80% (176/220)
2023-10-17T15:06:24.7589981Z remote: Compressing objects: 81% (179/220)
2023-10-17T15:06:24.7590926Z remote: Compressing objects: 82% (181/220)
2023-10-17T15:06:24.7591576Z remote: Compressing objects: 83% (183/220)
2023-10-17T15:06:24.7593837Z remote: Compressing objects: 84% (185/220)
2023-10-17T15:06:24.7594658Z remote: Compressing objects: 85% (187/220)
2023-10-17T15:06:24.7595558Z remote: Compressing objects: 86% (190/220)
2023-10-17T15:06:24.7596211Z remote: Compressing objects: 87% (192/220)
2023-10-17T15:06:24.7597066Z remote: Compressing objects: 88% (194/220)
2023-10-17T15:06:24.7597934Z remote: Compressing objects: 89% (196/220)
2023-10-17T15:06:24.7598614Z remote: Compressing objects: 90% (198/220)
2023-10-17T15:06:24.7599420Z remote: Compressing objects: 91% (201/220)
2023-10-17T15:06:24.7600078Z remote: Compressing objects: 92% (203/220)
2023-10-17T15:06:24.7600982Z remote: Compressing objects: 93% (205/220)
2023-10-17T15:06:24.7601784Z remote: Compressing objects: 94% (207/220)
2023-10-17T15:06:24.7602424Z remote: Compressing objects: 95% (209/220)
2023-10-17T15:06:24.7603290Z remote: Compressing objects: 96% (212/220)
2023-10-17T15:06:24.7604095Z remote: Compressing objects: 97% (214/220)
2023-10-17T15:06:24.7605464Z remote: Compressing objects: 98% (216/220)
2023-10-17T15:06:24.7606097Z remote: Compressing objects: 99% (218/220)
2023-10-17T15:06:24.7607425Z remote: Compressing objects: 100% (220/220)
2023-10-17T15:06:24.7608346Z remote: Compressing objects: 100% (220/220), done.
2023-10-17T15:06:24.7617336Z Receiving objects: 0% (1/250) 2023-10-17T15:06:24.7618183Z Receiving objects: 1% (3/250) 2023-10-17T15:06:24.7618742Z Receiving objects: 2% (5/250) 2023-10-17T15:06:24.7620232Z Receiving objects: 3% (8/250) 2023-10-17T15:06:24.7621120Z Receiving objects: 4% (10/250) 2023-10-17T15:06:24.7621849Z Receiving objects: 5% (13/250) 2023-10-17T15:06:24.7622379Z Receiving objects: 6% (15/250) 2023-10-17T15:06:24.7623161Z Receiving objects: 7% (18/250) 2023-10-17T15:06:24.7624638Z Receiving objects: 8% (20/250) 2023-10-17T15:06:24.7625719Z Receiving objects: 9% (23/250) 2023-10-17T15:06:24.7626627Z Receiving objects: 10% (25/250) 2023-10-17T15:06:24.7627193Z Receiving objects: 11% (28/250) 2023-10-17T15:06:24.7627715Z Receiving objects: 12% (30/250) 2023-10-17T15:06:24.7628526Z Receiving objects: 13% (33/250) 2023-10-17T15:06:24.7629189Z Receiving objects: 14% (35/250) 2023-10-17T15:06:24.7629750Z Receiving objects: 15% (38/250) 2023-10-17T15:06:24.7630497Z Receiving objects: 16% (40/250) 2023-10-17T15:06:24.7631038Z Receiving objects: 17% (43/250) 2023-10-17T15:06:24.7631745Z Receiving objects: 18% (45/250) 2023-10-17T15:06:24.7632269Z Receiving objects: 19% (48/250) 2023-10-17T15:06:24.7633861Z Receiving objects: 20% (50/250) 2023-10-17T15:06:24.7634438Z Receiving objects: 21% (53/250) 2023-10-17T15:06:24.7634955Z Receiving objects: 22% (55/250) 2023-10-17T15:06:24.7840095Z Receiving objects: 23% (58/250) 2023-10-17T15:06:25.7290287Z Receiving objects: 24% (60/250) 2023-10-17T15:06:25.7291687Z Receiving objects: 25% (63/250) 2023-10-17T15:06:25.7300790Z Receiving objects: 26% (65/250) 2023-10-17T15:06:25.7301495Z Receiving objects: 27% (68/250) 2023-10-17T15:06:25.7302134Z Receiving objects: 28% (70/250) 2023-10-17T15:06:25.7302738Z Receiving objects: 29% (73/250) 2023-10-17T15:06:25.7303332Z Receiving objects: 30% (75/250) 2023-10-17T15:06:25.7303937Z Receiving objects: 31% (78/250) 2023-10-17T15:06:25.7304532Z Receiving objects: 32% (80/250) 2023-10-17T15:06:25.7305126Z Receiving objects: 33% (83/250) 2023-10-17T15:06:25.7305725Z Receiving objects: 34% (85/250) 2023-10-17T15:06:25.7306347Z Receiving objects: 35% (88/250) 2023-10-17T15:06:25.7306997Z Receiving objects: 36% (90/250) 2023-10-17T15:06:25.7307588Z Receiving objects: 37% (93/250) 2023-10-17T15:06:25.7308195Z Receiving objects: 38% (95/250) 2023-10-17T15:06:25.7308784Z Receiving objects: 39% (98/250) 2023-10-17T15:06:25.7309377Z Receiving objects: 40% (100/250) 2023-10-17T15:06:25.7309999Z Receiving objects: 41% (103/250) 2023-10-17T15:06:25.7310914Z Receiving objects: 42% (105/250) 2023-10-17T15:06:25.7311515Z Receiving objects: 43% (108/250) 2023-10-17T15:06:25.7312124Z Receiving objects: 44% (110/250) 2023-10-17T15:06:25.7312718Z Receiving objects: 45% (113/250) 2023-10-17T15:06:25.7313316Z Receiving objects: 46% (115/250) 2023-10-17T15:06:25.7313913Z Receiving objects: 47% (118/250) 2023-10-17T15:06:25.7314534Z Receiving objects: 48% (120/250) 2023-10-17T15:06:25.7315127Z Receiving objects: 49% (123/250) 2023-10-17T15:06:25.7315742Z Receiving objects: 50% (125/250) 2023-10-17T15:06:25.7316365Z Receiving objects: 51% (128/250) 2023-10-17T15:06:25.7316956Z Receiving objects: 52% (130/250) 2023-10-17T15:06:25.7317545Z Receiving objects: 53% (133/250) 2023-10-17T15:06:25.7318150Z Receiving objects: 54% (135/250) 2023-10-17T15:06:25.7318745Z Receiving objects: 55% (138/250) 2023-10-17T15:06:25.7319337Z Receiving objects: 56% (140/250) 2023-10-17T15:06:25.7319943Z Receiving objects: 57% (143/250) 2023-10-17T15:06:25.7320553Z Receiving objects: 58% (145/250) 2023-10-17T15:06:25.7321138Z Receiving objects: 59% (148/250) 2023-10-17T15:06:25.7321780Z Receiving objects: 60% (150/250) 2023-10-17T15:06:25.7322382Z Receiving objects: 61% (153/250) 2023-10-17T15:06:25.7322980Z Receiving objects: 62% (155/250) 2023-10-17T15:06:25.7323570Z Receiving objects: 63% (158/250) 2023-10-17T15:06:25.7324159Z Receiving objects: 64% (160/250) 2023-10-17T15:06:25.7324758Z Receiving objects: 65% (163/250) 2023-10-17T15:06:25.7325340Z Receiving objects: 66% (165/250) 2023-10-17T15:06:25.7326094Z Receiving objects: 67% (168/250) 2023-10-17T15:06:25.7326712Z Receiving objects: 68% (170/250) 2023-10-17T15:06:25.7327315Z Receiving objects: 69% (173/250) 2023-10-17T15:06:25.7327902Z Receiving objects: 70% (175/250) 2023-10-17T15:06:25.7328500Z Receiving objects: 71% (178/250) 2023-10-17T15:06:25.7329105Z Receiving objects: 72% (180/250) 2023-10-17T15:06:25.7329692Z Receiving objects: 73% (183/250) 2023-10-17T15:06:25.7330283Z Receiving objects: 74% (185/250) 2023-10-17T15:06:25.7330883Z Receiving objects: 75% (188/250) 2023-10-17T15:06:25.7340221Z Receiving objects: 76% (190/250) 2023-10-17T15:06:25.7342966Z Receiving objects: 77% (193/250) 2023-10-17T15:06:25.7343728Z Receiving objects: 78% (195/250) 2023-10-17T15:06:25.7344340Z Receiving objects: 79% (198/250) 2023-10-17T15:06:25.7344954Z Receiving objects: 80% (200/250) 2023-10-17T15:06:25.7345548Z Receiving objects: 81% (203/250) 2023-10-17T15:06:25.7346165Z Receiving objects: 82% (205/250) 2023-10-17T15:06:25.7346777Z Receiving objects: 83% (208/250) 2023-10-17T15:06:25.7347374Z Receiving objects: 84% (210/250) 2023-10-17T15:06:25.7347982Z Receiving objects: 85% (213/250) 2023-10-17T15:06:25.7348570Z Receiving objects: 86% (215/250) 2023-10-17T15:06:25.7349160Z Receiving objects: 87% (218/250) 2023-10-17T15:06:25.7349766Z Receiving objects: 88% (220/250) 2023-10-17T15:06:25.7350354Z Receiving objects: 89% (223/250) 2023-10-17T15:06:25.7350958Z Receiving objects: 90% (225/250) 2023-10-17T15:06:25.7351562Z Receiving objects: 91% (228/250) 2023-10-17T15:06:25.7352153Z Receiving objects: 92% (230/250) 2023-10-17T15:06:25.7352837Z Receiving objects: 93% (233/250) 2023-10-17T15:06:25.7353347Z Receiving objects: 94% (235/250) 2023-10-17T15:06:25.7353871Z Receiving objects: 95% (238/250) 2023-10-17T15:06:25.7354384Z Receiving objects: 96% (240/250) 2023-10-17T15:06:25.7354900Z Receiving objects: 97% (243/250) 2023-10-17T15:06:25.7355426Z Receiving objects: 98% (245/250) 2023-10-17T15:06:25.7356782Z remote: Total 250 (delta 71), reused 120 (delta 24), pack-reused 0
2023-10-17T15:06:25.7357891Z Receiving objects: 99% (248/250) 2023-10-17T15:06:25.7358488Z Receiving objects: 100% (250/250) 2023-10-17T15:06:25.7359176Z Receiving objects: 100% (250/250), 10.05 MiB | 37.29 MiB/s, done. 2023-10-17T15:06:25.7360140Z Resolving deltas: 0% (0/71) 2023-10-17T15:06:25.7360847Z Resolving deltas: 1% (1/71) 2023-10-17T15:06:25.7361582Z Resolving deltas: 2% (2/71) 2023-10-17T15:06:25.7362087Z Resolving deltas: 4% (3/71) 2023-10-17T15:06:25.7362583Z Resolving deltas: 5% (4/71) 2023-10-17T15:06:25.7363095Z Resolving deltas: 7% (5/71) 2023-10-17T15:06:25.7363588Z Resolving deltas: 8% (6/71) 2023-10-17T15:06:25.7364085Z Resolving deltas: 9% (7/71) 2023-10-17T15:06:25.7364585Z Resolving deltas: 11% (8/71) 2023-10-17T15:06:25.7365077Z Resolving deltas: 12% (9/71) 2023-10-17T15:06:25.7365568Z Resolving deltas: 14% (10/71) 2023-10-17T15:06:25.7366079Z Resolving deltas: 15% (11/71) 2023-10-17T15:06:25.7366592Z Resolving deltas: 16% (12/71) 2023-10-17T15:06:25.7367085Z Resolving deltas: 18% (13/71) 2023-10-17T15:06:25.7369061Z Resolving deltas: 19% (14/71) 2023-10-17T15:06:25.7369596Z Resolving deltas: 21% (15/71) 2023-10-17T15:06:25.7370099Z Resolving deltas: 22% (16/71) 2023-10-17T15:06:25.7372625Z Resolving deltas: 23% (17/71) 2023-10-17T15:06:25.7373366Z Resolving deltas: 25% (18/71) 2023-10-17T15:06:25.7373878Z Resolving deltas: 26% (19/71) 2023-10-17T15:06:25.7378669Z Resolving deltas: 28% (20/71) 2023-10-17T15:06:25.7379378Z Resolving deltas: 29% (21/71) 2023-10-17T15:06:25.7379893Z Resolving deltas: 30% (22/71) 2023-10-17T15:06:25.7380394Z Resolving deltas: 32% (23/71) 2023-10-17T15:06:25.7380885Z Resolving deltas: 33% (24/71) 2023-10-17T15:06:25.7381390Z Resolving deltas: 35% (25/71) 2023-10-17T15:06:25.7381885Z Resolving deltas: 36% (26/71) 2023-10-17T15:06:25.7382379Z Resolving deltas: 38% (27/71) 2023-10-17T15:06:25.7382882Z Resolving deltas: 39% (28/71) 2023-10-17T15:06:25.7383596Z Resolving deltas: 40% (29/71) 2023-10-17T15:06:25.7384105Z Resolving deltas: 42% (30/71) 2023-10-17T15:06:25.7384613Z Resolving deltas: 43% (31/71) 2023-10-17T15:06:25.7385105Z Resolving deltas: 45% (32/71) 2023-10-17T15:06:25.7385600Z Resolving deltas: 46% (33/71) 2023-10-17T15:06:25.7386092Z Resolving deltas: 47% (34/71) 2023-10-17T15:06:25.7386608Z Resolving deltas: 49% (35/71) 2023-10-17T15:06:25.7387100Z Resolving deltas: 50% (36/71) 2023-10-17T15:06:25.7387591Z Resolving deltas: 52% (37/71) 2023-10-17T15:06:25.7388093Z Resolving deltas: 53% (38/71) 2023-10-17T15:06:25.7388585Z Resolving deltas: 54% (39/71) 2023-10-17T15:06:25.7389073Z Resolving deltas: 56% (40/71) 2023-10-17T15:06:25.7389574Z Resolving deltas: 57% (41/71) 2023-10-17T15:06:25.7390061Z Resolving deltas: 59% (42/71) 2023-10-17T15:06:25.7390550Z Resolving deltas: 60% (43/71) 2023-10-17T15:06:25.7391034Z Resolving deltas: 61% (44/71) 2023-10-17T15:06:25.7391538Z Resolving deltas: 63% (45/71) 2023-10-17T15:06:25.7392174Z Resolving deltas: 64% (46/71) 2023-10-17T15:06:25.7392671Z Resolving deltas: 66% (47/71) 2023-10-17T15:06:25.7393181Z Resolving deltas: 67% (48/71) 2023-10-17T15:06:25.7393671Z Resolving deltas: 69% (49/71) 2023-10-17T15:06:25.7394157Z Resolving deltas: 70% (50/71) 2023-10-17T15:06:25.7394661Z Resolving deltas: 71% (51/71) 2023-10-17T15:06:25.7395184Z Resolving deltas: 73% (52/71) 2023-10-17T15:06:25.7395691Z Resolving deltas: 74% (53/71) 2023-10-17T15:06:25.7396190Z Resolving deltas: 76% (54/71) 2023-10-17T15:06:25.7396680Z Resolving deltas: 77% (55/71) 2023-10-17T15:06:25.7397190Z Resolving deltas: 78% (56/71) 2023-10-17T15:06:25.7397678Z Resolving deltas: 80% (57/71) 2023-10-17T15:06:25.7398169Z Resolving deltas: 81% (58/71) 2023-10-17T15:06:25.7398674Z Resolving deltas: 83% (59/71) 2023-10-17T15:06:25.7399166Z Resolving deltas: 84% (60/71) 2023-10-17T15:06:25.7399657Z Resolving deltas: 85% (61/71) 2023-10-17T15:06:25.7400155Z Resolving deltas: 87% (62/71) 2023-10-17T15:06:25.7400654Z Resolving deltas: 88% (63/71) 2023-10-17T15:06:25.7401155Z Resolving deltas: 90% (64/71) 2023-10-17T15:06:25.7401644Z Resolving deltas: 91% (65/71) 2023-10-17T15:06:25.7402144Z Resolving deltas: 92% (66/71) 2023-10-17T15:06:25.7402639Z Resolving deltas: 94% (67/71) 2023-10-17T15:06:25.7403128Z Resolving deltas: 95% (68/71) 2023-10-17T15:06:25.7403784Z Resolving deltas: 97% (69/71) 2023-10-17T15:06:25.7404278Z Resolving deltas: 98% (70/71) 2023-10-17T15:06:25.7404768Z Resolving deltas: 100% (71/71) 2023-10-17T15:06:25.7405275Z Resolving deltas: 100% (71/71), done. 2023-10-17T15:06:25.7406260Z From https://github.com/gestisoft-DevProduits/GoGestisoft 2023-10-17T15:06:25.7407375Z [new ref] db116d0934877a7b9bfcdfb4d28c40275bec6ff2 -> origin/Release 2023-10-17T15:06:25.7409416Z ##[endgroup] 2023-10-17T15:06:25.7410304Z ##[group]Determining the checkout info 2023-10-17T15:06:25.7411142Z ##[endgroup] 2023-10-17T15:06:25.7412143Z ##[group]Checking out the ref 2023-10-17T15:06:25.7413503Z [command]"C:\Program Files\Git\bin\git.exe" checkout --progress --force -B Release refs/remotes/origin/Release 2023-10-17T15:06:25.9835915Z branch 'Release' set up to track 'origin/Release'. 2023-10-17T15:06:25.9840096Z Switched to a new branch 'Release' 2023-10-17T15:06:25.9891352Z ##[endgroup] 2023-10-17T15:06:26.0324691Z [command]"C:\Program Files\Git\bin\git.exe" log -1 --format='%H' 2023-10-17T15:06:26.0604668Z 'db116d0934877a7b9bfcdfb4d28c40275bec6ff2' 2023-10-17T15:06:26.1253791Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:26.1255530Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:26.1256574Z $envName = 'DemoQA'.split(' ')[0] 2023-10-17T15:06:26.1257424Z Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "envName=$envName" 2023-10-17T15:06:26.1301693Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-17T15:06:26.1302527Z env: 2023-10-17T15:06:26.1302848Z ALGoOrgSettings: 2023-10-17T15:06:26.1303237Z ALGoRepoSettings: 2023-10-17T15:06:26.1303635Z deviceCode: 2023-10-17T15:06:26.1303978Z ##[endgroup] 2023-10-17T15:06:26.4672272Z ##[group]Run microsoft/AL-Go-Actions/ReadSettings@v3.3 2023-10-17T15:06:26.4673009Z with: 2023-10-17T15:06:26.4673329Z shell: powershell 2023-10-17T15:06:26.4673709Z project: . 2023-10-17T15:06:26.4674020Z env: 2023-10-17T15:06:26.4674325Z ALGoOrgSettings: 2023-10-17T15:06:26.4674703Z ALGoRepoSettings: 2023-10-17T15:06:26.4675088Z deviceCode: 2023-10-17T15:06:26.4675418Z ##[endgroup] 2023-10-17T15:06:26.5019144Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:26.5020677Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:26.5021654Z try { 2023-10-17T15:06:26.5022632Z  D:\a_actions\microsoft\AL-Go-Actions\v3.3\ReadSettings/ReadSettings.ps1 -project $ENV:_project -get $ENV:get 2023-10-17T15:06:26.5023697Z } 2023-10-17T15:06:26.5024023Z catch { 2023-10-17T15:06:26.5025556Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-17T15:06:26.5027121Z  exit 1 2023-10-17T15:06:26.5027468Z } 2023-10-17T15:06:26.5066315Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-17T15:06:26.5067150Z env: 2023-10-17T15:06:26.5067465Z ALGoOrgSettings: 2023-10-17T15:06:26.5067850Z ALGoRepoSettings: 2023-10-17T15:06:26.5068229Z deviceCode: 2023-10-17T15:06:26.5068594Z _project: . 2023-10-17T15:06:26.5068916Z _get: 2023-10-17T15:06:26.5069219Z ##[endgroup] 2023-10-17T15:06:26.9916708Z Applying settings from D:\a\GoGestisoft\GoGestisoft.github\AL-Go-Settings.json 2023-10-17T15:06:27.1034222Z Applying settings from D:\a\GoGestisoft\GoGestisoft.AL-Go\settings.json 2023-10-17T15:06:27.8951250Z SETTINGS: 2023-10-17T15:06:28.0259759Z { 2023-10-17T15:06:28.0260509Z "keyVaultCertificateUrlSecretName": "", 2023-10-17T15:06:28.0265554Z "microsoftTelemetryConnectionString": "InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/", 2023-10-17T15:06:28.0267296Z "nextMajorSchedule": "0 0 * 6", 2023-10-17T15:06:28.0267880Z "type": "PTE", 2023-10-17T15:06:28.0268423Z "sendExtendedTelemetryToMicrosoft": false, 2023-10-17T15:06:28.0269087Z "appBuild": 20231017, 2023-10-17T15:06:28.0270375Z "installTestApps": [ 2023-10-17T15:06:28.0270702Z 2023-10-17T15:06:28.0270841Z ], 2023-10-17T15:06:28.0271261Z "versioningStrategy": 2, 2023-10-17T15:06:28.0271707Z "installApps": [ 2023-10-17T15:06:28.0272494Z "https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app" 2023-10-17T15:06:28.0273354Z ], 2023-10-17T15:06:28.0273784Z "installTestLibraries": false, 2023-10-17T15:06:28.0274302Z "runNumberOffset": 0, 2023-10-17T15:06:28.0275038Z "codeSignCertificatePasswordSecretName": "codeSignCertificatePassword", 2023-10-17T15:06:28.0275846Z "country": "ca", 2023-10-17T15:06:28.0276318Z "partnerTelemetryConnectionString": "", 2023-10-17T15:06:28.0276998Z "insiderSasTokenSecretName": "insiderSasToken", 2023-10-17T15:06:28.0277620Z "doNotRunTests": false, 2023-10-17T15:06:28.0278301Z "runs-on": "windows-latest", 2023-10-17T15:06:28.0278769Z "configPackages": [ 2023-10-17T15:06:28.0279051Z 2023-10-17T15:06:28.0279171Z ], 2023-10-17T15:06:28.0279633Z "generateDependencyArtifact": false, 2023-10-17T15:06:28.0280175Z "excludeEnvironments": [ 2023-10-17T15:06:28.0280487Z 2023-10-17T15:06:28.0280612Z ], 2023-10-17T15:06:28.0281148Z "keyVaultCertificatePasswordSecretName": "", 2023-10-17T15:06:28.0284093Z "rulesetFile": "", 2023-10-17T15:06:28.0284717Z "licenseFileUrlSecretName": "licenseFileUrl", 2023-10-17T15:06:28.0285315Z "memoryLimit": "", 2023-10-17T15:06:28.0285771Z "keyVaultClientIdSecretName": "", 2023-10-17T15:06:28.0286278Z "testFolders": [ 2023-10-17T15:06:28.0286658Z "Test" 2023-10-17T15:06:28.0287058Z ], 2023-10-17T15:06:28.0287647Z "githubRunner": "windows-latest", 2023-10-17T15:06:28.0288156Z "doNotBuildTests": false, 2023-10-17T15:06:28.0288598Z "environments": [ 2023-10-17T15:06:28.0288859Z 2023-10-17T15:06:28.0288980Z ], 2023-10-17T15:06:28.0289379Z "companyName": "", 2023-10-17T15:06:28.0289799Z "assignPremiumPlan": false, 2023-10-17T15:06:28.0290254Z "artifact": "", 2023-10-17T15:06:28.0290760Z "ghTokenWorkflowSecretName": "ghTokenWorkflow", 2023-10-17T15:06:28.0291396Z "enableTaskScheduler": false, 2023-10-17T15:06:28.0291984Z "enableCodeCop": **, 2023-10-17T15:06:28.0292405Z "repoVersion": "1.0", 2023-10-17T15:06:28.0292857Z "doNotPublishApps": false, 2023-10-17T15:06:28.0293351Z "githubRunnerShell": "powershell", 2023-10-17T15:06:28.0293853Z "appFolders": [ 2023-10-17T15:06:28.0294225Z "app" 2023-10-17T15:06:28.0294634Z ], 2023-10-17T15:06:28.0295004Z "cacheKeepDays": 3, 2023-10-17T15:06:28.0295422Z "bcptTestFolders": [ 2023-10-17T15:06:28.0295708Z 2023-10-17T15:06:28.0295830Z ], 2023-10-17T15:06:28.0296263Z "updateDependencies": false, 2023-10-17T15:06:28.0296746Z "cacheImageName": "my", 2023-10-17T15:06:28.0297230Z "treatTestFailuresAsWarnings": false, 2023-10-17T15:06:28.0297797Z "useProjectDependencies": false, 2023-10-17T15:06:28.0298326Z "additionalCountries": [ 2023-10-17T15:06:28.0298628Z 2023-10-17T15:06:28.0298764Z ], 2023-10-17T15:06:28.0299195Z "enableUICop":
, 2023-10-17T15:06:28.0299619Z "customCodeCops": [ 2023-10-17T15:06:28.0300084Z 2023-10-17T15:06:28.0300216Z ], 2023-10-17T15:06:28.0300611Z "appDependencies": [ 2023-10-17T15:06:28.0300890Z 2023-10-17T15:06:28.0301026Z ], 2023-10-17T15:06:28.0301449Z "doNotRunBcptTests": false, 2023-10-17T15:06:28.0301916Z "skipUpgrade": false, 2023-10-17T15:06:28.0302396Z "enablePerTenantExtensionCop": , 2023-10-17T15:06:28.0302972Z "appDependencyProbingPaths": [ 2023-10-17T15:06:28.0303331Z 2023-10-17T15:06:28.0303473Z ], 2023-10-17T15:06:28.0303945Z "useCompilerFolder": false, 2023-10-17T15:06:28.0304439Z "installTestFramework": false, 2023-10-17T15:06:28.0304994Z "keyVaultCodesignCertificateName": "", 2023-10-17T15:06:28.0305544Z "keyVaultName": "", 2023-10-17T15:06:28.0306019Z "obsoleteTagMinAllowedMajorMinor": "", 2023-10-17T15:06:28.0306630Z "applicationDependency": "18.0.0.0", 2023-10-17T15:06:28.0307650Z "applicationInsightsConnectionStringSecretName": "applicationInsightsConnectionString", 2023-10-17T15:06:28.0308585Z "shell": "powershell", 2023-10-17T15:06:28.0309013Z "DeployToDemoQA": { 2023-10-17T15:06:28.0309505Z "EnvironmentName": "SandboxQA", 2023-10-17T15:06:28.0310109Z "Branches": "Release", 2023-10-17T15:06:28.0310714Z "AuthContext": "Demo_AuthContext", 2023-10-17T15:06:28.0311374Z "ContinuousDeployment": 2023-10-17T15:06:28.0311909Z }, 2023-10-17T15:06:28.0312294Z "failOn": "error", 2023-10-17T15:06:28.0313006Z "templateUrl": "https://github.com/microsoft/AL-Go-PTE@main", 2023-10-17T15:06:28.0313676Z "projects": [ 2023-10-17T15:06:28.0313898Z 2023-10-17T15:06:28.0314024Z ], 2023-10-17T15:06:28.0314431Z "appSourceCopMandatoryAffixes": [ 2023-10-17T15:06:28.0315602Z 2023-10-17T15:06:28.0315765Z ], 2023-10-17T15:06:28.0316253Z "projectName": ".", 2023-10-17T15:06:28.0316673Z "testDependencies": [ 2023-10-17T15:06:28.0316963Z 2023-10-17T15:06:28.0317085Z ], 2023-10-17T15:06:28.0317504Z "appRevision": 150627, 2023-10-17T15:06:28.0318146Z "codeSignCertificateUrlSecretName": "codeSignCertificateUrl", 2023-10-17T15:06:28.0318843Z "vsixFile": "", 2023-10-17T15:06:28.0319230Z "DeployToDemoTest": { 2023-10-17T15:06:28.0319846Z "EnvironmentName": "SandboxDev", 2023-10-17T15:06:28.0320647Z "Branches": "Release", 2023-10-17T15:06:28.0321396Z "AuthContext": "Demo_AuthContext", 2023-10-17T15:06:28.0322224Z "ContinuousDeployment": 2023-10-17T15:06:28.0322915Z }, 2023-10-17T15:06:28.0323471Z "unusedALGoSystemFiles": [ 2023-10-17T15:06:28.0323862Z 2023-10-17T15:06:28.0324301Z ], 2023-10-17T15:06:28.0324838Z "buildModes": [ 2023-10-17T15:06:28.0325110Z 2023-10-17T15:06:28.0325298Z ], 2023-10-17T15:06:28.0325782Z "templateBranch": "", 2023-10-17T15:06:28.0326387Z "DeliverToStorage": { 2023-10-17T15:06:28.0326995Z "Branches": "Release" 2023-10-17T15:06:28.0327626Z }, 2023-10-17T15:06:28.0328173Z "nextMinorSchedule": "0 0 6", 2023-10-17T15:06:28.0328869Z "installPerformanceToolkit": false, 2023-10-17T15:06:28.0329570Z "PullRequestTrigger": "pull_request_target", 2023-10-17T15:06:28.0330266Z "doNotSignApps": false, 2023-10-17T15:06:28.0330818Z "repoName": "GoGestisoft", 2023-10-17T15:06:28.0331457Z "fullBuildPatterns": [ 2023-10-17T15:06:28.0331773Z 2023-10-17T15:06:28.0331995Z ], 2023-10-17T15:06:28.0332568Z "alwaysBuildAllProjects": false, 2023-10-17T15:06:28.0333338Z "installOnlyReferencedApps": , 2023-10-17T15:06:28.0334213Z "installTestRunner": false, 2023-10-17T15:06:28.0335095Z "adminCenterApiCredentialsSecretName": "adminCenterApiCredentials" 2023-10-17T15:06:28.0335933Z } 2023-10-17T15:06:28.9202461Z GitHubRunnerJson="windows-latest" 2023-10-17T15:06:28.9215482Z GitHubRunnerShell=powershell 2023-10-17T15:06:28.9766071Z ##[group]Run microsoft/AL-Go-Actions/ReadSecrets@v3.3 2023-10-17T15:06:28.9766800Z with: 2023-10-17T15:06:28.9767116Z shell: powershell 2023-10-17T15:06:28.9775481Z gitHubSecrets: { "AUTHCONTEXT": "", "ACCEPT_INSIDEREULA": "", "INSIDERSASTOKEN": "", "github_token": "", "GHTOKENWORKFLOW": "", "LICENSEFILEURL": "", "DEMO_AUTHCONTEXT": "", "STORAGECONTEXT": "" } 2023-10-17T15:06:28.9777659Z getSecrets: DemoQA-AuthContext,DemoQA_AuthContext,AuthContext,DemoQA-EnvironmentName,DemoQA_EnvironmentName,EnvironmentName,projects 2023-10-17T15:06:28.9778966Z useGhTokenWorkflowForPush: false 2023-10-17T15:06:28.9779451Z env: 2023-10-17T15:06:28.9779754Z ALGoOrgSettings: 2023-10-17T15:06:28.9780151Z ALGoRepoSettings: 2023-10-17T15:06:28.9780529Z deviceCode: 2023-10-17T15:06:28.9799729Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231017,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","partnerTelemetryConnectionString":"","insiderSasTokenSecretName":"insiderSasToken","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":150627,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-17T15:06:28.9820008Z ##[endgroup] 2023-10-17T15:06:28.9964596Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:28.9968525Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:28.9969764Z try { 2023-10-17T15:06:28.9970719Z  D:\a_actions\microsoft\AL-Go-Actions\v3.3\ReadSecrets/ReadSecrets.ps1 -gitHubSecrets '{ 2023-10-17T15:06:28.9973122Z  "AUTHCONTEXT": "", 2023-10-17T15:06:28.9973719Z  "ACCEPT_INSIDEREULA": "", 2023-10-17T15:06:28.9975510Z  "INSIDERSASTOKEN": "", 2023-10-17T15:06:28.9976346Z  "github_token": "", 2023-10-17T15:06:28.9977208Z  "GHTOKENWORKFLOW": "", 2023-10-17T15:06:28.9979311Z  "LICENSEFILEURL": "", 2023-10-17T15:06:28.9981144Z  "DEMO_AUTHCONTEXT": "", 2023-10-17T15:06:28.9983673Z  "STORAGECONTEXT": "" 2023-10-17T15:06:28.9984731Z }' -getSecrets $ENV:_getSecrets -useGhTokenWorkflowForPush $ENV:useGhTokenWorkflowForPush 2023-10-17T15:06:28.9986108Z } 2023-10-17T15:06:28.9986483Z catch { 2023-10-17T15:06:28.9988171Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-17T15:06:28.9989968Z  exit 1 2023-10-17T15:06:28.9990312Z } 2023-10-17T15:06:29.0028483Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-17T15:06:29.0029308Z env: 2023-10-17T15:06:29.0029626Z ALGoOrgSettings: 2023-10-17T15:06:29.0030013Z ALGoRepoSettings: 2023-10-17T15:06:29.0030403Z deviceCode: 2023-10-17T15:06:29.0050478Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231017,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","partnerTelemetryConnectionString":"","insiderSasTokenSecretName":"insiderSasToken","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":150627,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-17T15:06:29.0071730Z _getSecrets: DemoQA-AuthContext,DemoQA_AuthContext,AuthContext,DemoQA-EnvironmentName,DemoQA_EnvironmentName,EnvironmentName,projects 2023-10-17T15:06:29.0073024Z _useGhTokenWorkflowForPush: false 2023-10-17T15:06:29.0073525Z ##[endgroup] 2023-10-17T15:06:29.5870693Z Trying to get the secret (DemoQA-AuthContext) from the github environment. 2023-10-17T15:06:29.5989016Z Could not find secret DemoQA-AuthContext in Github secrets or Azure Key Vault. 2023-10-17T15:06:29.5999127Z Trying to get the secret (DemoQA_AuthContext) from the github environment. 2023-10-17T15:06:29.6008874Z Could not find secret DemoQA_AuthContext in Github secrets or Azure Key Vault. 2023-10-17T15:06:29.6018073Z Trying to get the secret (AuthContext) from the github environment. 2023-10-17T15:06:29.6069806Z Masking value for AuthContext 2023-10-17T15:06:29.6646434Z Secret (AuthContext) was retrieved from the github environment. 2023-10-17T15:06:29.6739286Z Masking value for AuthContext.ClientID 2023-10-17T15:06:29.6795105Z Masking value for AuthContext.ClientSecret 2023-10-17T15:06:29.6853921Z AuthContext successfully read from secret AuthContext 2023-10-17T15:06:29.6884879Z Trying to get the secret (DemoQA-EnvironmentName) from the github environment. 2023-10-17T15:06:29.6894417Z Could not find secret DemoQA-EnvironmentName in Github secrets or Azure Key Vault. 2023-10-17T15:06:29.6903800Z Trying to get the secret (DemoQA_EnvironmentName) from the github environment. 2023-10-17T15:06:29.6912885Z Could not find secret DemoQA_EnvironmentName in Github secrets or Azure Key Vault. 2023-10-17T15:06:29.6922256Z Trying to get the secret (EnvironmentName) from the github environment. 2023-10-17T15:06:29.6931065Z Could not find secret EnvironmentName in Github secrets or Azure Key Vault. 2023-10-17T15:06:29.6940166Z Trying to get the secret (projects) from the github environment. 2023-10-17T15:06:29.6949083Z Could not find secret projects in Github secrets or Azure Key Vault. 2023-10-17T15:06:29.7030713Z The following secrets was not found: DemoQA-AuthContext, DemoQA_AuthContext, DemoQA-EnvironmentName, DemoQA_EnvironmentName, EnvironmentName, projects 2023-10-17T15:06:29.7537910Z ##[group]Run microsoft/AL-Go-Actions/Deploy@v3.3 2023-10-17T15:06:29.7538656Z with: 2023-10-17T15:06:29.7538992Z shell: powershell 2023-10-17T15:06:29.7539413Z environmentName: DemoQA 2023-10-17T15:06:29.7539872Z artifacts: current 2023-10-17T15:06:29.7540265Z type: Publish 2023-10-17T15:06:29.7540811Z token: 2023-10-17T15:06:29.7541224Z parentTelemetryScopeJson: 7b7d 2023-10-17T15:06:29.7541698Z env: 2023-10-17T15:06:29.7542035Z ALGoOrgSettings: 2023-10-17T15:06:29.7542447Z ALGoRepoSettings: 2023-10-17T15:06:29.7542850Z deviceCode: 2023-10-17T15:06:29.7562350Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231017,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","partnerTelemetryConnectionString":"","insiderSasTokenSecretName":"insiderSasToken","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":150627,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-17T15:06:29.7585680Z Secrets: {"AuthContext":"","DemoQA-AuthContext":"","DemoQA_AuthContext":"","DemoQA-EnvironmentName":"","DemoQA_EnvironmentName":"","EnvironmentName":"","projects":""} 2023-10-17T15:06:29.7586970Z ##[endgroup] 2023-10-17T15:06:29.7722544Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:29.7724128Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-17T15:06:29.7726766Z try { 2023-10-17T15:06:29.7728967Z  D:\a_actions\microsoft\AL-Go-Actions\v3.3\Deploy/Deploy.ps1 -token $ENV:_token -parentTelemetryScopeJson $ENV:_parentTelemetryScopeJson -environmentName $ENV:_environmentName -artifacts $ENV:_artifacts -type $ENV:_type -deploymentEnvironmentsJson $ENV:deploymentEnvironmentsJson 2023-10-17T15:06:29.7731223Z } 2023-10-17T15:06:29.7731585Z catch { 2023-10-17T15:06:29.7733078Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-17T15:06:29.7734683Z  exit 1 2023-10-17T15:06:29.7735066Z } 2023-10-17T15:06:29.7773464Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-17T15:06:29.7774329Z env: 2023-10-17T15:06:29.7774670Z ALGoOrgSettings: 2023-10-17T15:06:29.7775112Z ALGoRepoSettings: 2023-10-17T15:06:29.7775723Z deviceCode: 2023-10-17T15:06:29.7795398Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231017,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","partnerTelemetryConnectionString":"","insiderSasTokenSecretName":"insiderSasToken","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":150627,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-17T15:06:29.7821692Z Secrets: {"AuthContext":"","DemoQA-AuthContext":"","DemoQA_AuthContext":"","DemoQA-EnvironmentName":"","DemoQA_EnvironmentName":"","EnvironmentName":"","projects":""} 2023-10-17T15:06:29.7823906Z _token: *** 2023-10-17T15:06:29.7824324Z _parentTelemetryScopeJson: 7b7d 2023-10-17T15:06:29.7824872Z _environmentName: DemoQA 2023-10-17T15:06:29.7825334Z _artifacts: current 2023-10-17T15:06:29.7825743Z _type: Publish 2023-10-17T15:06:29.7826184Z _deploymentEnvironmentsJson: 2023-10-17T15:06:29.7826679Z ##[endgroup] 2023-10-17T15:06:30.2873546Z ##[error]Unexpected error when running action. Error Message: Cannot bind argument to parameter 'deploymentEnvironmentsJson' because it is an empty string., StackTrace: at , D:\a_temp\ec522589-77f6-4617-84d9-c8320a7cb828.ps1: line 4 <- at , : line 1 2023-10-17T15:06:30.3025472Z ##[error]Process completed with exit code 1. 2023-10-17T15:06:30.3235295Z Post job cleanup. 2023-10-17T15:06:30.5327499Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-10-17T15:06:30.5624484Z git version 2.42.0.windows.2 2023-10-17T15:06:30.5825845Z Temporarily overriding HOME='D:\a_temp\301a980c-c324-46f7-b56a-033627cd8462' before making global git config changes 2023-10-17T15:06:30.5828422Z Adding repository directory to the temporary git global config as a safe directory 2023-10-17T15:06:30.5839701Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\GoGestisoft\GoGestisoft 2023-10-17T15:06:30.6085824Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core.sshCommand 2023-10-17T15:06:30.6414140Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-10-17T15:06:31.4421653Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader 2023-10-17T15:06:31.4715815Z http.https://github.com/.extraheader 2023-10-17T15:06:31.4779534Z [command]"C:\Program Files\Git\bin\git.exe" config --local --unset-all http.https://github.com/.extraheader 2023-10-17T15:06:31.5090337Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-10-17T15:06:32.1513315Z Cleaning up orphan processes

mabessghaier commented 11 months ago

@freddydk: any update? Thank you

jonaswre commented 11 months ago

He's on vacation.

The feature is somewhat recent have you updated to the latest release?

mabessghaier commented 11 months ago

Yes it's done

freddydk commented 11 months ago

Which settings file did you add the deploy to settings to?

Needs to be the repo settings

freddydk commented 11 months ago

Also as Jonas pointed out - this was shipped in AL-Go yesterday in v4.0 Was only available in preview before that

mabessghaier commented 11 months ago

Yes it's in the repo settings as shown below

image

I'm in the latest version v4.0

freddydk commented 11 months ago

Could you rerun and include the full log again?

mabessghaier commented 11 months ago

Yes sure

2023-10-18T17:05:42.0314324Z Requested labels: windows-latest 2023-10-18T17:05:42.0314727Z Job defined at: gestisoft-DevProduits/GoGestisoft/.github/workflows/PublishToEnvironment.yaml@refs/heads/Release 2023-10-18T17:05:42.0314919Z Waiting for a runner to pick up this job... 2023-10-18T17:05:42.7060813Z Job is waiting for a hosted runner to come online. 2023-10-18T17:05:46.8870625Z Job is about to start running on the hosted runner: GitHub Actions 3 (hosted) 2023-10-18T17:05:51.5303722Z Current runner version: '2.310.2' 2023-10-18T17:05:51.5340737Z ##[group]Operating System 2023-10-18T17:05:51.5341681Z Microsoft Windows Server 2022 2023-10-18T17:05:51.5342370Z 10.0.20348 2023-10-18T17:05:51.5342998Z Datacenter 2023-10-18T17:05:51.5343538Z ##[endgroup] 2023-10-18T17:05:51.5344113Z ##[group]Runner Image 2023-10-18T17:05:51.5344814Z Image: windows-2022 2023-10-18T17:05:51.5345413Z Version: 20231016.1.0 2023-10-18T17:05:51.5346799Z Included Software: https://github.com/actions/runner-images/blob/win22/20231016.1/images/win/Windows2022-Readme.md 2023-10-18T17:05:51.5348746Z Image Release: https://github.com/actions/runner-images/releases/tag/win22%2F20231016.1 2023-10-18T17:05:51.5350029Z ##[endgroup] 2023-10-18T17:05:51.5350629Z ##[group]Runner Image Provisioner 2023-10-18T17:05:51.5351370Z 2.0.312.1 2023-10-18T17:05:51.5351887Z ##[endgroup] 2023-10-18T17:05:51.5353353Z ##[group]GITHUB_TOKEN Permissions 2023-10-18T17:05:51.5356010Z Actions: read 2023-10-18T17:05:51.5356934Z Contents: read 2023-10-18T17:05:51.5357691Z Metadata: read 2023-10-18T17:05:51.5358268Z ##[endgroup] 2023-10-18T17:05:51.5361598Z Secret source: Actions 2023-10-18T17:05:51.5362512Z Prepare workflow directory 2023-10-18T17:05:51.7074716Z Prepare all required actions 2023-10-18T17:05:51.7339897Z Getting action download info 2023-10-18T17:05:52.0049114Z Download action repository 'actions/checkout@v3' (SHA:f43a0e5ff2bd294095638e18286ca9a3d1956744) 2023-10-18T17:05:52.7565392Z Download action repository 'microsoft/AL-Go-Actions@v4.0' (SHA:ebed332412c4f420057f6e12e9c9c6c841995c6a) 2023-10-18T17:05:53.5773191Z Complete job name: Deploy to DemoQA 2023-10-18T17:05:53.8423315Z ##[group]Run actions/checkout@v3 2023-10-18T17:05:53.8424109Z with: 2023-10-18T17:05:53.8424714Z repository: gestisoft-DevProduits/GoGestisoft 2023-10-18T17:05:53.8425738Z token: 2023-10-18T17:05:53.8426252Z ssh-strict: 2023-10-18T17:05:53.8426787Z persist-credentials: 2023-10-18T17:05:53.8427320Z clean: 2023-10-18T17:05:53.8427846Z sparse-checkout-cone-mode: 2023-10-18T17:05:53.8428449Z fetch-depth: 1 2023-10-18T17:05:53.8429084Z fetch-tags: false 2023-10-18T17:05:53.8429529Z lfs: false 2023-10-18T17:05:53.8429968Z submodules: false 2023-10-18T17:05:53.8430463Z set-safe-directory: 2023-10-18T17:05:53.8431014Z env: 2023-10-18T17:05:53.8431589Z ALGoOrgSettings: 2023-10-18T17:05:53.8432572Z ALGoRepoSettings: 2023-10-18T17:05:53.8433174Z deviceCode: 2023-10-18T17:05:53.8433687Z ##[endgroup] 2023-10-18T17:05:55.4310818Z Syncing repository: gestisoft-DevProduits/GoGestisoft 2023-10-18T17:05:55.4437867Z ##[group]Getting Git version info 2023-10-18T17:05:55.4439238Z Working directory is 'D:\a\GoGestisoft\GoGestisoft' 2023-10-18T17:05:55.4440770Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-10-18T17:05:55.4441591Z git version 2.42.0.windows.2 2023-10-18T17:05:55.4444339Z ##[endgroup] 2023-10-18T17:05:55.4465425Z Temporarily overriding HOME='D:\a_temp\243169e4-cc24-4261-820a-d74085e9e963' before making global git config changes 2023-10-18T17:05:55.4467271Z Adding repository directory to the temporary git global config as a safe directory 2023-10-18T17:05:55.4468993Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\GoGestisoft\GoGestisoft 2023-10-18T17:05:55.4471187Z Deleting the contents of 'D:\a\GoGestisoft\GoGestisoft' 2023-10-18T17:05:55.4472412Z ##[group]Initializing the repository 2023-10-18T17:05:55.4473318Z [command]"C:\Program Files\Git\bin\git.exe" init D:\a\GoGestisoft\GoGestisoft 2023-10-18T17:05:55.4474446Z Initialized empty Git repository in D:/a/GoGestisoft/GoGestisoft/.git/ 2023-10-18T17:05:55.4476793Z [command]"C:\Program Files\Git\bin\git.exe" remote add origin https://github.com/gestisoft-DevProduits/GoGestisoft 2023-10-18T17:05:55.4478919Z ##[endgroup] 2023-10-18T17:05:55.4479769Z ##[group]Disabling automatic garbage collection 2023-10-18T17:05:55.4482321Z [command]"C:\Program Files\Git\bin\git.exe" config --local gc.auto 0 2023-10-18T17:05:55.4487906Z ##[endgroup] 2023-10-18T17:05:55.4488686Z ##[group]Setting up auth 2023-10-18T17:05:55.4491445Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core.sshCommand 2023-10-18T17:05:55.4494609Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-10-18T17:05:57.4762535Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader 2023-10-18T17:05:57.5176485Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-10-18T17:05:58.2005364Z [command]"C:\Program Files\Git\bin\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic *" 2023-10-18T17:05:58.2456453Z ##[endgroup] 2023-10-18T17:05:58.2463618Z ##[group]Fetching the repository 2023-10-18T17:05:58.2467855Z [command]"C:\Program Files\Git\bin\git.exe" -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +747c3d80a37e012957ff8ff5b214219c8a0cef42:refs/remotes/origin/Release 2023-10-18T17:06:00.5081184Z remote: Enumerating objects: 250, done.
2023-10-18T17:06:00.5082266Z remote: Counting objects: 0% (1/250)
2023-10-18T17:06:00.5083816Z remote: Counting objects: 1% (3/250)
2023-10-18T17:06:00.5087514Z remote: Counting objects: 2% (5/250)
2023-10-18T17:06:00.5088466Z remote: Counting objects: 3% (8/250)
2023-10-18T17:06:00.5089164Z remote: Counting objects: 4% (10/250)
2023-10-18T17:06:00.5089937Z remote: Counting objects: 5% (13/250)
2023-10-18T17:06:00.5090687Z remote: Counting objects: 6% (15/250)
2023-10-18T17:06:00.5091418Z remote: Counting objects: 7% (18/250)
2023-10-18T17:06:00.5092128Z remote: Counting objects: 8% (20/250)
2023-10-18T17:06:00.5092823Z remote: Counting objects: 9% (23/250)
2023-10-18T17:06:00.5093526Z remote: Counting objects: 10% (25/250)
2023-10-18T17:06:00.5094411Z remote: Counting objects: 11% (28/250)
2023-10-18T17:06:00.5095391Z remote: Counting objects: 12% (30/250)
2023-10-18T17:06:00.5096083Z remote: Counting objects: 13% (33/250)
2023-10-18T17:06:00.5096772Z remote: Counting objects: 14% (35/250)
2023-10-18T17:06:00.5097482Z remote: Counting objects: 15% (38/250)
2023-10-18T17:06:00.5098270Z remote: Counting objects: 16% (40/250)
2023-10-18T17:06:00.5098965Z remote: Counting objects: 17% (43/250)
2023-10-18T17:06:00.5099654Z remote: Counting objects: 18% (45/250)
2023-10-18T17:06:00.5100353Z remote: Counting objects: 19% (48/250)
2023-10-18T17:06:00.5101199Z remote: Counting objects: 20% (50/250)
2023-10-18T17:06:00.5101889Z remote: Counting objects: 21% (53/250)
2023-10-18T17:06:00.5102826Z remote: Counting objects: 22% (55/250)
2023-10-18T17:06:00.5103528Z remote: Counting objects: 23% (58/250)
2023-10-18T17:06:00.5104229Z remote: Counting objects: 24% (60/250)
2023-10-18T17:06:00.5104920Z remote: Counting objects: 25% (63/250)
2023-10-18T17:06:00.5106073Z remote: Counting objects: 26% (65/250)
2023-10-18T17:06:00.5106841Z remote: Counting objects: 27% (68/250)
2023-10-18T17:06:00.5107529Z remote: Counting objects: 28% (70/250)
2023-10-18T17:06:00.5108205Z remote: Counting objects: 29% (73/250)
2023-10-18T17:06:00.5108897Z remote: Counting objects: 30% (75/250)
2023-10-18T17:06:00.5109722Z remote: Counting objects: 31% (78/250)
2023-10-18T17:06:00.5110634Z remote: Counting objects: 32% (80/250)
2023-10-18T17:06:00.5112594Z remote: Counting objects: 33% (83/250)
2023-10-18T17:06:00.5113280Z remote: Counting objects: 34% (85/250)
2023-10-18T17:06:00.5114080Z remote: Counting objects: 35% (88/250)
2023-10-18T17:06:00.5114759Z remote: Counting objects: 36% (90/250)
2023-10-18T17:06:00.5115461Z remote: Counting objects: 37% (93/250)
2023-10-18T17:06:00.5116144Z remote: Counting objects: 38% (95/250)
2023-10-18T17:06:00.5116971Z remote: Counting objects: 39% (98/250)
2023-10-18T17:06:00.5117983Z remote: Counting objects: 40% (100/250)
2023-10-18T17:06:00.5118696Z remote: Counting objects: 41% (103/250)
2023-10-18T17:06:00.5119403Z remote: Counting objects: 42% (105/250)
2023-10-18T17:06:00.5120090Z remote: Counting objects: 43% (108/250)
2023-10-18T17:06:00.5121115Z remote: Counting objects: 44% (110/250)
2023-10-18T17:06:00.5122004Z remote: Counting objects: 45% (113/250)
2023-10-18T17:06:00.5122714Z remote: Counting objects: 46% (115/250)
2023-10-18T17:06:00.5123853Z remote: Counting objects: 47% (118/250)
2023-10-18T17:06:00.5125091Z remote: Counting objects: 48% (120/250)
2023-10-18T17:06:00.5126920Z remote: Counting objects: 49% (123/250)
2023-10-18T17:06:00.5127671Z remote: Counting objects: 50% (125/250)
2023-10-18T17:06:00.5128401Z remote: Counting objects: 51% (128/250)
2023-10-18T17:06:00.5129268Z remote: Counting objects: 52% (130/250)
2023-10-18T17:06:00.5129970Z remote: Counting objects: 53% (133/250)
2023-10-18T17:06:00.5131880Z remote: Counting objects: 54% (135/250)
2023-10-18T17:06:00.5132805Z remote: Counting objects: 55% (138/250)
2023-10-18T17:06:00.5133510Z remote: Counting objects: 56% (140/250)
2023-10-18T17:06:00.5134203Z remote: Counting objects: 57% (143/250)
2023-10-18T17:06:00.5134914Z remote: Counting objects: 58% (145/250)
2023-10-18T17:06:00.5135706Z remote: Counting objects: 59% (148/250)
2023-10-18T17:06:00.5136403Z remote: Counting objects: 60% (150/250)
2023-10-18T17:06:00.5137095Z remote: Counting objects: 61% (153/250)
2023-10-18T17:06:00.5137809Z remote: Counting objects: 62% (155/250)
2023-10-18T17:06:00.5138505Z remote: Counting objects: 63% (158/250)
2023-10-18T17:06:00.5139435Z remote: Counting objects: 64% (160/250)
2023-10-18T17:06:00.5140313Z remote: Counting objects: 65% (163/250)
2023-10-18T17:06:00.5141033Z remote: Counting objects: 66% (165/250)
2023-10-18T17:06:00.5141741Z remote: Counting objects: 67% (168/250)
2023-10-18T17:06:00.5142430Z remote: Counting objects: 68% (170/250)
2023-10-18T17:06:00.5143554Z remote: Counting objects: 69% (173/250)
2023-10-18T17:06:00.5144239Z remote: Counting objects: 70% (175/250)
2023-10-18T17:06:00.5144932Z remote: Counting objects: 71% (178/250)
2023-10-18T17:06:00.5146246Z remote: Counting objects: 72% (180/250)
2023-10-18T17:06:00.5147089Z remote: Counting objects: 73% (183/250)
2023-10-18T17:06:00.5147944Z remote: Counting objects: 74% (185/250)
2023-10-18T17:06:00.5148639Z remote: Counting objects: 75% (188/250)
2023-10-18T17:06:00.5149351Z remote: Counting objects: 76% (190/250)
2023-10-18T17:06:00.5150049Z remote: Counting objects: 77% (193/250)
2023-10-18T17:06:00.5150855Z remote: Counting objects: 78% (195/250)
2023-10-18T17:06:00.5151557Z remote: Counting objects: 79% (198/250)
2023-10-18T17:06:00.5152270Z remote: Counting objects: 80% (200/250)
2023-10-18T17:06:00.5152961Z remote: Counting objects: 81% (203/250)
2023-10-18T17:06:00.5153658Z remote: Counting objects: 82% (205/250)
2023-10-18T17:06:00.5154456Z remote: Counting objects: 83% (208/250)
2023-10-18T17:06:00.5155165Z remote: Counting objects: 84% (210/250)
2023-10-18T17:06:00.5156127Z remote: Counting objects: 85% (213/250)
2023-10-18T17:06:00.5156826Z remote: Counting objects: 86% (215/250)
2023-10-18T17:06:00.5158045Z remote: Counting objects: 87% (218/250)
2023-10-18T17:06:00.5158745Z remote: Counting objects: 88% (220/250)
2023-10-18T17:06:00.5159434Z remote: Counting objects: 89% (223/250)
2023-10-18T17:06:00.5160135Z remote: Counting objects: 90% (225/250)
2023-10-18T17:06:00.5160848Z remote: Counting objects: 91% (228/250)
2023-10-18T17:06:00.5161720Z remote: Counting objects: 92% (230/250)
2023-10-18T17:06:00.5162416Z remote: Counting objects: 93% (233/250)
2023-10-18T17:06:00.5163131Z remote: Counting objects: 94% (235/250)
2023-10-18T17:06:00.5163823Z remote: Counting objects: 95% (238/250)
2023-10-18T17:06:00.5164535Z remote: Counting objects: 96% (240/250)
2023-10-18T17:06:00.5165260Z remote: Counting objects: 97% (243/250)
2023-10-18T17:06:00.5166087Z remote: Counting objects: 98% (245/250)
2023-10-18T17:06:00.5166774Z remote: Counting objects: 99% (248/250)
2023-10-18T17:06:00.5167476Z remote: Counting objects: 100% (250/250)
2023-10-18T17:06:00.5168210Z remote: Counting objects: 100% (250/250), done.
2023-10-18T17:06:00.5169055Z remote: Compressing objects: 0% (1/221)
2023-10-18T17:06:00.5169787Z remote: Compressing objects: 1% (3/221)
2023-10-18T17:06:00.5747026Z remote: Compressing objects: 2% (5/221)
2023-10-18T17:06:00.5748421Z remote: Compressing objects: 3% (7/221)
2023-10-18T17:06:00.5749641Z remote: Compressing objects: 4% (9/221)
2023-10-18T17:06:00.5750433Z remote: Compressing objects: 5% (12/221)
2023-10-18T17:06:00.5751655Z remote: Compressing objects: 6% (14/221)
2023-10-18T17:06:00.5761187Z remote: Compressing objects: 7% (16/221)
2023-10-18T17:06:00.5762184Z remote: Compressing objects: 8% (18/221)
2023-10-18T17:06:00.5771148Z remote: Compressing objects: 9% (20/221)
2023-10-18T17:06:00.5772080Z remote: Compressing objects: 10% (23/221)
2023-10-18T17:06:00.5772911Z remote: Compressing objects: 11% (25/221)
2023-10-18T17:06:00.5784369Z remote: Compressing objects: 12% (27/221)
2023-10-18T17:06:00.5785324Z remote: Compressing objects: 13% (29/221)
2023-10-18T17:06:00.5786182Z remote: Compressing objects: 14% (31/221)
2023-10-18T17:06:00.5787227Z remote: Compressing objects: 15% (34/221)
2023-10-18T17:06:00.5800962Z remote: Compressing objects: 16% (36/221)
2023-10-18T17:06:00.5801986Z remote: Compressing objects: 17% (38/221)
2023-10-18T17:06:00.5802865Z remote: Compressing objects: 18% (40/221)
2023-10-18T17:06:00.5865523Z remote: Compressing objects: 19% (42/221)
2023-10-18T17:06:00.5878467Z remote: Compressing objects: 20% (45/221)
2023-10-18T17:06:00.5879457Z remote: Compressing objects: 21% (47/221)
2023-10-18T17:06:00.5880369Z remote: Compressing objects: 22% (49/221)
2023-10-18T17:06:00.5881207Z remote: Compressing objects: 23% (51/221)
2023-10-18T17:06:00.5882929Z remote: Compressing objects: 24% (54/221)
2023-10-18T17:06:00.5884110Z remote: Compressing objects: 25% (56/221)
2023-10-18T17:06:00.5884961Z remote: Compressing objects: 26% (58/221)
2023-10-18T17:06:00.5885814Z remote: Compressing objects: 27% (60/221)
2023-10-18T17:06:00.5887430Z remote: Compressing objects: 28% (62/221)
2023-10-18T17:06:00.5888562Z remote: Compressing objects: 29% (65/221)
2023-10-18T17:06:00.5889450Z remote: Compressing objects: 30% (67/221)
2023-10-18T17:06:00.5891664Z remote: Compressing objects: 31% (69/221)
2023-10-18T17:06:00.5892496Z remote: Compressing objects: 32% (71/221)
2023-10-18T17:06:00.5893326Z remote: Compressing objects: 33% (73/221)
2023-10-18T17:06:00.5894870Z remote: Compressing objects: 34% (76/221)
2023-10-18T17:06:00.5896398Z remote: Compressing objects: 35% (78/221)
2023-10-18T17:06:00.5897225Z remote: Compressing objects: 36% (80/221)
2023-10-18T17:06:00.5897993Z remote: Compressing objects: 37% (82/221)
2023-10-18T17:06:00.5898722Z remote: Compressing objects: 38% (84/221)
2023-10-18T17:06:00.5899456Z remote: Compressing objects: 39% (87/221)
2023-10-18T17:06:00.5900480Z remote: Compressing objects: 40% (89/221)
2023-10-18T17:06:00.5902277Z remote: Compressing objects: 41% (91/221)
2023-10-18T17:06:00.5903214Z remote: Compressing objects: 42% (93/221)
2023-10-18T17:06:00.5904196Z remote: Compressing objects: 43% (96/221)
2023-10-18T17:06:00.5905963Z remote: Compressing objects: 44% (98/221)
2023-10-18T17:06:00.5908098Z remote: Compressing objects: 45% (100/221)
2023-10-18T17:06:00.5910031Z remote: Compressing objects: 46% (102/221)
2023-10-18T17:06:00.5910807Z remote: Compressing objects: 47% (104/221)
2023-10-18T17:06:00.5911559Z remote: Compressing objects: 48% (107/221)
2023-10-18T17:06:00.5912301Z remote: Compressing objects: 49% (109/221)
2023-10-18T17:06:00.5913063Z remote: Compressing objects: 50% (111/221)
2023-10-18T17:06:00.5913975Z remote: Compressing objects: 51% (113/221)
2023-10-18T17:06:00.5914720Z remote: Compressing objects: 52% (115/221)
2023-10-18T17:06:00.5916611Z remote: Compressing objects: 53% (118/221)
2023-10-18T17:06:00.5917761Z remote: Compressing objects: 54% (120/221)
2023-10-18T17:06:00.5918550Z remote: Compressing objects: 55% (122/221)
2023-10-18T17:06:00.5920045Z remote: Compressing objects: 56% (124/221)
2023-10-18T17:06:00.5921460Z remote: Compressing objects: 57% (126/221)
2023-10-18T17:06:00.5922378Z remote: Compressing objects: 58% (129/221)
2023-10-18T17:06:00.5923551Z remote: Compressing objects: 59% (131/221)
2023-10-18T17:06:00.5924819Z remote: Compressing objects: 60% (133/221)
2023-10-18T17:06:00.5926223Z remote: Compressing objects: 61% (135/221)
2023-10-18T17:06:00.5932167Z remote: Compressing objects: 62% (138/221)
2023-10-18T17:06:00.5933170Z remote: Compressing objects: 63% (140/221)
2023-10-18T17:06:00.5934026Z remote: Compressing objects: 64% (142/221)
2023-10-18T17:06:00.5934870Z remote: Compressing objects: 65% (144/221)
2023-10-18T17:06:00.6095569Z remote: Compressing objects: 66% (146/221)
2023-10-18T17:06:00.6096605Z remote: Compressing objects: 67% (149/221)
2023-10-18T17:06:00.6097487Z remote: Compressing objects: 68% (151/221)
2023-10-18T17:06:00.6098318Z remote: Compressing objects: 69% (153/221)
2023-10-18T17:06:00.6099358Z remote: Compressing objects: 70% (155/221)
2023-10-18T17:06:00.6100208Z remote: Compressing objects: 71% (157/221)
2023-10-18T17:06:00.6101060Z remote: Compressing objects: 72% (160/221)
2023-10-18T17:06:00.6101908Z remote: Compressing objects: 73% (162/221)
2023-10-18T17:06:00.6102737Z remote: Compressing objects: 74% (164/221)
2023-10-18T17:06:00.6104987Z remote: Compressing objects: 75% (166/221)
2023-10-18T17:06:00.6105764Z remote: Compressing objects: 76% (168/221)
2023-10-18T17:06:00.6106506Z remote: Compressing objects: 77% (171/221)
2023-10-18T17:06:00.6107247Z remote: Compressing objects: 78% (173/221)
2023-10-18T17:06:00.6108022Z remote: Compressing objects: 79% (175/221)
2023-10-18T17:06:00.6108764Z remote: Compressing objects: 80% (177/221)
2023-10-18T17:06:00.6109499Z remote: Compressing objects: 81% (180/221)
2023-10-18T17:06:00.6110242Z remote: Compressing objects: 82% (182/221)
2023-10-18T17:06:00.6110995Z remote: Compressing objects: 83% (184/221)
2023-10-18T17:06:00.6113626Z remote: Compressing objects: 84% (186/221)
2023-10-18T17:06:00.6114367Z remote: Compressing objects: 85% (188/221)
2023-10-18T17:06:00.6115124Z remote: Compressing objects: 86% (191/221)
2023-10-18T17:06:00.6115862Z remote: Compressing objects: 87% (193/221)
2023-10-18T17:06:00.6116605Z remote: Compressing objects: 88% (195/221)
2023-10-18T17:06:00.6117333Z remote: Compressing objects: 89% (197/221)
2023-10-18T17:06:00.6118087Z remote: Compressing objects: 90% (199/221)
2023-10-18T17:06:00.6118842Z remote: Compressing objects: 91% (202/221)
2023-10-18T17:06:00.6119705Z remote: Compressing objects: 92% (204/221)
2023-10-18T17:06:00.6120480Z remote: Compressing objects: 93% (206/221)
2023-10-18T17:06:00.6121210Z remote: Compressing objects: 94% (208/221)
2023-10-18T17:06:00.6121943Z remote: Compressing objects: 95% (210/221)
2023-10-18T17:06:00.6122678Z remote: Compressing objects: 96% (213/221)
2023-10-18T17:06:00.6123653Z remote: Compressing objects: 97% (215/221)
2023-10-18T17:06:00.6124840Z remote: Compressing objects: 98% (217/221)
2023-10-18T17:06:00.6125590Z remote: Compressing objects: 99% (219/221)
2023-10-18T17:06:00.6128104Z remote: Compressing objects: 100% (221/221)
2023-10-18T17:06:00.6129002Z remote: Compressing objects: 100% (221/221), done.
2023-10-18T17:06:00.6964064Z Receiving objects: 0% (1/250) 2023-10-18T17:06:00.6965006Z Receiving objects: 1% (3/250) 2023-10-18T17:06:00.6986735Z Receiving objects: 2% (5/250) 2023-10-18T17:06:00.6994671Z Receiving objects: 3% (8/250) 2023-10-18T17:06:00.7000515Z Receiving objects: 4% (10/250) 2023-10-18T17:06:00.7001516Z Receiving objects: 5% (13/250) 2023-10-18T17:06:00.7004469Z Receiving objects: 6% (15/250) 2023-10-18T17:06:00.7005362Z Receiving objects: 7% (18/250) 2023-10-18T17:06:00.7006392Z Receiving objects: 8% (20/250) 2023-10-18T17:06:00.7007060Z Receiving objects: 9% (23/250) 2023-10-18T17:06:00.7007693Z Receiving objects: 10% (25/250) 2023-10-18T17:06:00.7008331Z Receiving objects: 11% (28/250) 2023-10-18T17:06:00.7009033Z Receiving objects: 12% (30/250) 2023-10-18T17:06:00.7009665Z Receiving objects: 13% (33/250) 2023-10-18T17:06:00.7011696Z Receiving objects: 14% (35/250) 2023-10-18T17:06:00.7012848Z Receiving objects: 15% (38/250) 2023-10-18T17:06:00.7013644Z Receiving objects: 16% (40/250) 2023-10-18T17:06:00.7016366Z Receiving objects: 17% (43/250) 2023-10-18T17:06:00.7025662Z Receiving objects: 18% (45/250) 2023-10-18T17:06:00.7027735Z Receiving objects: 19% (48/250) 2023-10-18T17:06:00.7028861Z Receiving objects: 20% (50/250) 2023-10-18T17:06:00.7029518Z Receiving objects: 21% (53/250) 2023-10-18T17:06:00.7030967Z Receiving objects: 22% (55/250) 2023-10-18T17:06:00.7911064Z Receiving objects: 23% (58/250) 2023-10-18T17:06:00.7968524Z Receiving objects: 24% (60/250) 2023-10-18T17:06:00.8679538Z Receiving objects: 25% (63/250) 2023-10-18T17:06:00.8684036Z Receiving objects: 26% (65/250) 2023-10-18T17:06:00.8685368Z Receiving objects: 27% (68/250) 2023-10-18T17:06:00.8687359Z Receiving objects: 28% (70/250) 2023-10-18T17:06:00.8688006Z Receiving objects: 29% (73/250) 2023-10-18T17:06:00.8688624Z Receiving objects: 30% (75/250) 2023-10-18T17:06:00.8689320Z Receiving objects: 31% (78/250) 2023-10-18T17:06:00.8689970Z Receiving objects: 32% (80/250) 2023-10-18T17:06:00.8695684Z Receiving objects: 33% (83/250) 2023-10-18T17:06:00.8696549Z Receiving objects: 34% (85/250) 2023-10-18T17:06:00.8697251Z Receiving objects: 35% (88/250) 2023-10-18T17:06:00.8700215Z Receiving objects: 36% (90/250) 2023-10-18T17:06:00.8703541Z Receiving objects: 37% (93/250) 2023-10-18T17:06:00.8727937Z Receiving objects: 38% (95/250) 2023-10-18T17:06:01.0137047Z Receiving objects: 39% (98/250) 2023-10-18T17:06:01.0225532Z Receiving objects: 40% (100/250) 2023-10-18T17:06:01.0228270Z Receiving objects: 41% (103/250) 2023-10-18T17:06:01.0231118Z Receiving objects: 42% (105/250) 2023-10-18T17:06:01.0235828Z Receiving objects: 43% (108/250) 2023-10-18T17:06:01.0243453Z Receiving objects: 44% (110/250) 2023-10-18T17:06:01.0247491Z Receiving objects: 45% (113/250) 2023-10-18T17:06:01.0248601Z Receiving objects: 46% (115/250) 2023-10-18T17:06:01.0252785Z Receiving objects: 47% (118/250) 2023-10-18T17:06:01.0256263Z Receiving objects: 48% (120/250) 2023-10-18T17:06:01.0263116Z Receiving objects: 49% (123/250) 2023-10-18T17:06:01.0263978Z Receiving objects: 50% (125/250) 2023-10-18T17:06:01.0267067Z Receiving objects: 51% (128/250) 2023-10-18T17:06:01.0269416Z Receiving objects: 52% (130/250) 2023-10-18T17:06:01.0272308Z Receiving objects: 53% (133/250) 2023-10-18T17:06:01.0276922Z Receiving objects: 54% (135/250) 2023-10-18T17:06:01.0281538Z Receiving objects: 55% (138/250) 2023-10-18T17:06:01.0284662Z Receiving objects: 56% (140/250) 2023-10-18T17:06:01.0285485Z Receiving objects: 57% (143/250) 2023-10-18T17:06:01.0287705Z Receiving objects: 58% (145/250) 2023-10-18T17:06:01.0289583Z Receiving objects: 59% (148/250) 2023-10-18T17:06:01.0290257Z Receiving objects: 60% (150/250) 2023-10-18T17:06:01.0290912Z Receiving objects: 61% (153/250) 2023-10-18T17:06:01.0291582Z Receiving objects: 62% (155/250) 2023-10-18T17:06:01.0292210Z Receiving objects: 63% (158/250) 2023-10-18T17:06:01.0292831Z Receiving objects: 64% (160/250) 2023-10-18T17:06:01.0293662Z Receiving objects: 65% (163/250) 2023-10-18T17:06:01.0294981Z Receiving objects: 66% (165/250) 2023-10-18T17:06:01.0296082Z Receiving objects: 67% (168/250) 2023-10-18T17:06:01.0311591Z Receiving objects: 68% (170/250) 2023-10-18T17:06:01.0312355Z Receiving objects: 69% (173/250) 2023-10-18T17:06:01.0313006Z Receiving objects: 70% (175/250) 2023-10-18T17:06:01.0313638Z Receiving objects: 71% (178/250) 2023-10-18T17:06:01.0314302Z Receiving objects: 72% (180/250) 2023-10-18T17:06:01.0314935Z Receiving objects: 73% (183/250) 2023-10-18T17:06:01.0315587Z Receiving objects: 74% (185/250) 2023-10-18T17:06:01.0339154Z Receiving objects: 75% (188/250) 2023-10-18T17:06:01.0340712Z Receiving objects: 76% (190/250) 2023-10-18T17:06:01.0341834Z Receiving objects: 77% (193/250) 2023-10-18T17:06:01.0343292Z Receiving objects: 78% (195/250) 2023-10-18T17:06:01.0368681Z Receiving objects: 79% (198/250) 2023-10-18T17:06:01.0487140Z Receiving objects: 80% (200/250) 2023-10-18T17:06:01.0495274Z Receiving objects: 81% (203/250) 2023-10-18T17:06:01.0498631Z Receiving objects: 82% (205/250) 2023-10-18T17:06:01.0500297Z Receiving objects: 83% (208/250) 2023-10-18T17:06:01.0501580Z Receiving objects: 84% (210/250) 2023-10-18T17:06:01.0502317Z Receiving objects: 85% (213/250) 2023-10-18T17:06:01.0503042Z Receiving objects: 86% (215/250) 2023-10-18T17:06:01.0503725Z Receiving objects: 87% (218/250) 2023-10-18T17:06:01.0504564Z Receiving objects: 88% (220/250) 2023-10-18T17:06:01.0505406Z Receiving objects: 89% (223/250) 2023-10-18T17:06:01.0506113Z Receiving objects: 90% (225/250) 2023-10-18T17:06:01.0506791Z Receiving objects: 91% (228/250) 2023-10-18T17:06:01.0598659Z Receiving objects: 92% (230/250) 2023-10-18T17:06:01.0599311Z Receiving objects: 93% (233/250) 2023-10-18T17:06:01.0599886Z Receiving objects: 94% (235/250) 2023-10-18T17:06:01.0600467Z Receiving objects: 95% (238/250) 2023-10-18T17:06:01.0601035Z Receiving objects: 96% (240/250) 2023-10-18T17:06:01.0601593Z Receiving objects: 97% (243/250) 2023-10-18T17:06:01.0602155Z Receiving objects: 98% (245/250) 2023-10-18T17:06:01.0603543Z remote: Total 250 (delta 71), reused 119 (delta 23), pack-reused 0
2023-10-18T17:06:01.0604398Z Receiving objects: 99% (248/250) 2023-10-18T17:06:01.0604968Z Receiving objects: 100% (250/250) 2023-10-18T17:06:01.0605715Z Receiving objects: 100% (250/250), 10.05 MiB | 27.52 MiB/s, done. 2023-10-18T17:06:01.0606486Z Resolving deltas: 0% (0/71) 2023-10-18T17:06:01.0607031Z Resolving deltas: 1% (1/71) 2023-10-18T17:06:01.0607938Z Resolving deltas: 2% (2/71) 2023-10-18T17:06:01.0608641Z Resolving deltas: 4% (3/71) 2023-10-18T17:06:01.0609218Z Resolving deltas: 5% (4/71) 2023-10-18T17:06:01.0609757Z Resolving deltas: 7% (5/71) 2023-10-18T17:06:01.0610299Z Resolving deltas: 8% (6/71) 2023-10-18T17:06:01.0610854Z Resolving deltas: 9% (7/71) 2023-10-18T17:06:01.0611389Z Resolving deltas: 11% (8/71) 2023-10-18T17:06:01.0611920Z Resolving deltas: 12% (9/71) 2023-10-18T17:06:01.0612463Z Resolving deltas: 14% (10/71) 2023-10-18T17:06:01.0613040Z Resolving deltas: 15% (11/71) 2023-10-18T17:06:01.0613594Z Resolving deltas: 16% (12/71) 2023-10-18T17:06:01.0614242Z Resolving deltas: 18% (13/71) 2023-10-18T17:06:01.0614806Z Resolving deltas: 19% (14/71) 2023-10-18T17:06:01.0615345Z Resolving deltas: 21% (15/71) 2023-10-18T17:06:01.0615885Z Resolving deltas: 22% (16/71) 2023-10-18T17:06:01.0616492Z Resolving deltas: 23% (17/71) 2023-10-18T17:06:01.0617044Z Resolving deltas: 25% (18/71) 2023-10-18T17:06:01.0617588Z Resolving deltas: 26% (19/71) 2023-10-18T17:06:01.0618121Z Resolving deltas: 28% (20/71) 2023-10-18T17:06:01.0618651Z Resolving deltas: 29% (21/71) 2023-10-18T17:06:01.0622023Z Resolving deltas: 30% (22/71) 2023-10-18T17:06:01.0622579Z Resolving deltas: 32% (23/71) 2023-10-18T17:06:01.0623121Z Resolving deltas: 33% (24/71) 2023-10-18T17:06:01.0623723Z Resolving deltas: 35% (25/71) 2023-10-18T17:06:01.0624271Z Resolving deltas: 36% (26/71) 2023-10-18T17:06:01.0624804Z Resolving deltas: 38% (27/71) 2023-10-18T17:06:01.0625340Z Resolving deltas: 39% (28/71) 2023-10-18T17:06:01.0626165Z Resolving deltas: 40% (29/71) 2023-10-18T17:06:01.0626755Z Resolving deltas: 42% (30/71) 2023-10-18T17:06:01.0627289Z Resolving deltas: 43% (31/71) 2023-10-18T17:06:01.0627837Z Resolving deltas: 45% (32/71) 2023-10-18T17:06:01.0628393Z Resolving deltas: 46% (33/71) 2023-10-18T17:06:01.0628925Z Resolving deltas: 47% (34/71) 2023-10-18T17:06:01.0629474Z Resolving deltas: 49% (35/71) 2023-10-18T17:06:01.0630003Z Resolving deltas: 50% (36/71) 2023-10-18T17:06:01.0630558Z Resolving deltas: 52% (37/71) 2023-10-18T17:06:01.0631091Z Resolving deltas: 53% (38/71) 2023-10-18T17:06:01.0631627Z Resolving deltas: 54% (39/71) 2023-10-18T17:06:01.0632295Z Resolving deltas: 56% (40/71) 2023-10-18T17:06:01.0632839Z Resolving deltas: 57% (41/71) 2023-10-18T17:06:01.0633455Z Resolving deltas: 59% (42/71) 2023-10-18T17:06:01.0634061Z Resolving deltas: 60% (43/71) 2023-10-18T17:06:01.0634594Z Resolving deltas: 61% (44/71) 2023-10-18T17:06:01.0635144Z Resolving deltas: 63% (45/71) 2023-10-18T17:06:01.0636095Z Resolving deltas: 64% (46/71) 2023-10-18T17:06:01.0636700Z Resolving deltas: 66% (47/71) 2023-10-18T17:06:01.0637262Z Resolving deltas: 67% (48/71) 2023-10-18T17:06:01.0637807Z Resolving deltas: 69% (49/71) 2023-10-18T17:06:01.0638350Z Resolving deltas: 70% (50/71) 2023-10-18T17:06:01.0638886Z Resolving deltas: 71% (51/71) 2023-10-18T17:06:01.0639455Z Resolving deltas: 73% (52/71) 2023-10-18T17:06:01.0639989Z Resolving deltas: 74% (53/71) 2023-10-18T17:06:01.0640529Z Resolving deltas: 76% (54/71) 2023-10-18T17:06:01.0641065Z Resolving deltas: 77% (55/71) 2023-10-18T17:06:01.0641618Z Resolving deltas: 78% (56/71) 2023-10-18T17:06:01.0642147Z Resolving deltas: 80% (57/71) 2023-10-18T17:06:01.0642679Z Resolving deltas: 81% (58/71) 2023-10-18T17:06:01.0643213Z Resolving deltas: 83% (59/71) 2023-10-18T17:06:01.0643760Z Resolving deltas: 84% (60/71) 2023-10-18T17:06:01.0644294Z Resolving deltas: 85% (61/71) 2023-10-18T17:06:01.0644833Z Resolving deltas: 87% (62/71) 2023-10-18T17:06:01.0645363Z Resolving deltas: 88% (63/71) 2023-10-18T17:06:01.0645913Z Resolving deltas: 90% (64/71) 2023-10-18T17:06:01.0646500Z Resolving deltas: 91% (65/71) 2023-10-18T17:06:01.0647035Z Resolving deltas: 92% (66/71) 2023-10-18T17:06:01.0647573Z Resolving deltas: 94% (67/71) 2023-10-18T17:06:01.0648107Z Resolving deltas: 95% (68/71) 2023-10-18T17:06:01.0649157Z Resolving deltas: 97% (69/71) 2023-10-18T17:06:01.0649691Z Resolving deltas: 98% (70/71) 2023-10-18T17:06:01.0650224Z Resolving deltas: 100% (71/71) 2023-10-18T17:06:01.0650794Z Resolving deltas: 100% (71/71), done. 2023-10-18T17:06:01.1546705Z From https://github.com/gestisoft-DevProduits/GoGestisoft 2023-10-18T17:06:01.1547928Z [new ref] 747c3d80a37e012957ff8ff5b214219c8a0cef42 -> origin/Release 2023-10-18T17:06:01.2057617Z ##[endgroup] 2023-10-18T17:06:01.2058752Z ##[group]Determining the checkout info 2023-10-18T17:06:01.2059937Z ##[endgroup] 2023-10-18T17:06:01.2061740Z ##[group]Checking out the ref 2023-10-18T17:06:01.2072991Z [command]"C:\Program Files\Git\bin\git.exe" checkout --progress --force -B Release refs/remotes/origin/Release 2023-10-18T17:06:01.5077959Z branch 'Release' set up to track 'origin/Release'. 2023-10-18T17:06:01.5079247Z Switched to a new branch 'Release' 2023-10-18T17:06:01.5148277Z ##[endgroup] 2023-10-18T17:06:01.5819793Z [command]"C:\Program Files\Git\bin\git.exe" log -1 --format='%H' 2023-10-18T17:06:01.6202337Z '747c3d80a37e012957ff8ff5b214219c8a0cef42' 2023-10-18T17:06:01.7075294Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:01.7077161Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:01.7078305Z $envName = 'DemoQA'.split(' ')[0] 2023-10-18T17:06:01.7079287Z Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "envName=$envName" 2023-10-18T17:06:01.7143338Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T17:06:01.7144326Z env: 2023-10-18T17:06:01.7144769Z ALGoOrgSettings: 2023-10-18T17:06:01.7145256Z ALGoRepoSettings: 2023-10-18T17:06:01.7145729Z deviceCode: 2023-10-18T17:06:01.7146160Z ##[endgroup] 2023-10-18T17:06:02.1887799Z ##[group]Run microsoft/AL-Go-Actions/ReadSettings@v4.0 2023-10-18T17:06:02.1888811Z with: 2023-10-18T17:06:02.1889338Z shell: powershell 2023-10-18T17:06:02.1889907Z project: . 2023-10-18T17:06:02.1890494Z env: 2023-10-18T17:06:02.1891094Z ALGoOrgSettings: 2023-10-18T17:06:02.1891703Z ALGoRepoSettings: 2023-10-18T17:06:02.1892284Z deviceCode: 2023-10-18T17:06:02.1892927Z ##[endgroup] 2023-10-18T17:06:02.2452928Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:02.2454781Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:02.2456747Z try { 2023-10-18T17:06:02.2458034Z  D:\a_actions\microsoft\AL-Go-Actions\v4.0\ReadSettings/ReadSettings.ps1 -project $ENV:_project -get $ENV:get 2023-10-18T17:06:02.2459322Z } 2023-10-18T17:06:02.2459853Z catch { 2023-10-18T17:06:02.2461793Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-18T17:06:02.2463626Z  exit 1 2023-10-18T17:06:02.2464214Z } 2023-10-18T17:06:02.2532646Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T17:06:02.2533807Z env: 2023-10-18T17:06:02.2534354Z ALGoOrgSettings: 2023-10-18T17:06:02.2535032Z ALGoRepoSettings: 2023-10-18T17:06:02.2535661Z deviceCode: 2023-10-18T17:06:02.2536249Z _project: . 2023-10-18T17:06:02.2536775Z _get: 2023-10-18T17:06:02.2537372Z ##[endgroup] 2023-10-18T17:06:02.9234357Z Applying settings from D:\a\GoGestisoft\GoGestisoft.github\AL-Go-Settings.json 2023-10-18T17:06:03.0358460Z Applying settings from D:\a\GoGestisoft\GoGestisoft.AL-Go\settings.json 2023-10-18T17:06:03.0389386Z No settings found in D:\a\GoGestisoft\GoGestisoft.github\Publish To Environment.settings.json 2023-10-18T17:06:03.0428390Z No settings found in D:\a\GoGestisoft\GoGestisoft.AL-Go\Publish To Environment.settings.json 2023-10-18T17:06:03.0443442Z No settings found in D:\a\GoGestisoft\GoGestisoft.AL-Go\mabessghaier.settings.json 2023-10-18T17:06:04.2559042Z SETTINGS: 2023-10-18T17:06:04.5172390Z { 2023-10-18T17:06:04.5173109Z "keyVaultCertificateUrlSecretName": "", 2023-10-18T17:06:04.5175414Z "microsoftTelemetryConnectionString": "InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/", 2023-10-18T17:06:04.5177191Z "nextMajorSchedule": "0 0 * 6", 2023-10-18T17:06:04.5177990Z "type": "PTE", 2023-10-18T17:06:04.5178848Z "sendExtendedTelemetryToMicrosoft": false, 2023-10-18T17:06:04.5179707Z "appBuild": 20231018, 2023-10-18T17:06:04.5180386Z "installTestApps": [ 2023-10-18T17:06:04.5180840Z 2023-10-18T17:06:04.5181192Z ], 2023-10-18T17:06:04.5181877Z "versioningStrategy": 2, 2023-10-18T17:06:04.5182575Z "installApps": [ 2023-10-18T17:06:04.5183593Z "https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app" 2023-10-18T17:06:04.5184678Z ], 2023-10-18T17:06:04.5185343Z "installTestLibraries": false, 2023-10-18T17:06:04.5186077Z "runNumberOffset": 0, 2023-10-18T17:06:04.5187035Z "codeSignCertificatePasswordSecretName": "codeSignCertificatePassword", 2023-10-18T17:06:04.5188107Z "country": "ca", 2023-10-18T17:06:04.5188740Z "excludeEnvironments": [ 2023-10-18T17:06:04.5189231Z 2023-10-18T17:06:04.5189519Z ], 2023-10-18T17:06:04.5190276Z "partnerTelemetryConnectionString": "", 2023-10-18T17:06:04.5191072Z "doNotRunTests": false, 2023-10-18T17:06:04.5191883Z "runs-on": "windows-latest", 2023-10-18T17:06:04.5196040Z "configPackages": [ 2023-10-18T17:06:04.5196772Z 2023-10-18T17:06:04.5197115Z ], 2023-10-18T17:06:04.5197811Z "generateDependencyArtifact": false, 2023-10-18T17:06:04.5198965Z "templateUrl": "https://github.com/microsoft/AL-Go-PTE@main", 2023-10-18T17:06:04.5200025Z "keyVaultCertificatePasswordSecretName": "", 2023-10-18T17:06:04.5200850Z "rulesetFile": "", 2023-10-18T17:06:04.5201576Z "licenseFileUrlSecretName": "licenseFileUrl", 2023-10-18T17:06:04.5202443Z "enableExternalRulesets": false, 2023-10-18T17:06:04.5203171Z "memoryLimit": "", 2023-10-18T17:06:04.5203846Z "keyVaultClientIdSecretName": "", 2023-10-18T17:06:04.5206232Z "testFolders": [ 2023-10-18T17:06:04.5206976Z "Test" 2023-10-18T17:06:04.5207625Z ], 2023-10-18T17:06:04.5208426Z "githubRunner": "windows-latest", 2023-10-18T17:06:04.5209199Z "doNotBuildTests": false, 2023-10-18T17:06:04.5209864Z "environments": [ 2023-10-18T17:06:04.5210307Z 2023-10-18T17:06:04.5210584Z ], 2023-10-18T17:06:04.5211219Z "companyName": "", 2023-10-18T17:06:04.5211861Z "assignPremiumPlan": false, 2023-10-18T17:06:04.5212564Z "artifact": "", 2023-10-18T17:06:04.5213304Z "ghTokenWorkflowSecretName": "ghTokenWorkflow", 2023-10-18T17:06:04.5214155Z "enableTaskScheduler": false, 2023-10-18T17:06:04.5214965Z "enableCodeCop": **, 2023-10-18T17:06:04.5215646Z "repoVersion": "1.0", 2023-10-18T17:06:04.5216303Z "doNotPublishApps": false, 2023-10-18T17:06:04.5216988Z "doNotSignApps": false, 2023-10-18T17:06:04.5217753Z "githubRunnerShell": "powershell", 2023-10-18T17:06:04.5218514Z "cacheKeepDays": 3, 2023-10-18T17:06:04.5219158Z "bcptTestFolders": [ 2023-10-18T17:06:04.5219613Z 2023-10-18T17:06:04.5219887Z ], 2023-10-18T17:06:04.5220556Z "updateDependencies": false, 2023-10-18T17:06:04.5221258Z "cacheImageName": "my", 2023-10-18T17:06:04.5221980Z "treatTestFailuresAsWarnings": false, 2023-10-18T17:06:04.5223185Z "useProjectDependencies": false, 2023-10-18T17:06:04.5223930Z "additionalCountries": [ 2023-10-18T17:06:04.5224416Z 2023-10-18T17:06:04.5224694Z ], 2023-10-18T17:06:04.5225379Z "enableUICop":
, 2023-10-18T17:06:04.5226023Z "customCodeCops": [ 2023-10-18T17:06:04.5226473Z 2023-10-18T17:06:04.5226787Z ], 2023-10-18T17:06:04.5227432Z "appDependencies": [ 2023-10-18T17:06:04.5227889Z 2023-10-18T17:06:04.5228184Z ], 2023-10-18T17:06:04.5228825Z "doNotRunBcptTests": false, 2023-10-18T17:06:04.5230221Z "skipUpgrade": false, 2023-10-18T17:06:04.5231138Z "enablePerTenantExtensionCop": , 2023-10-18T17:06:04.5231947Z "appDependencyProbingPaths": [ 2023-10-18T17:06:04.5232483Z 2023-10-18T17:06:04.5232784Z ], 2023-10-18T17:06:04.5233551Z "useCompilerFolder": false, 2023-10-18T17:06:04.5234262Z "installTestFramework": false, 2023-10-18T17:06:04.5235050Z "keyVaultCodesignCertificateName": "", 2023-10-18T17:06:04.5235844Z "keyVaultName": "", 2023-10-18T17:06:04.5236536Z "obsoleteTagMinAllowedMajorMinor": "", 2023-10-18T17:06:04.5237365Z "applicationDependency": "18.0.0.0", 2023-10-18T17:06:04.5238542Z "applicationInsightsConnectionStringSecretName": "applicationInsightsConnectionString", 2023-10-18T17:06:04.5239697Z "shell": "powershell", 2023-10-18T17:06:04.5240348Z "DeployToDemoQA": { 2023-10-18T17:06:04.5241063Z "EnvironmentName": "SandboxQA", 2023-10-18T17:06:04.5241767Z "Branches": "Release", 2023-10-18T17:06:04.5242474Z "AuthContext": "Demo_AuthContext", 2023-10-18T17:06:04.5243247Z "ContinuousDeployment": 2023-10-18T17:06:04.5243884Z }, 2023-10-18T17:06:04.5245602Z "failOn": "error", 2023-10-18T17:06:04.5246458Z "projects": [ 2023-10-18T17:06:04.5246737Z 2023-10-18T17:06:04.5246917Z ], 2023-10-18T17:06:04.5247422Z "appSourceCopMandatoryAffixes": [ 2023-10-18T17:06:04.5247860Z 2023-10-18T17:06:04.5248041Z ], 2023-10-18T17:06:04.5248669Z "projectName": ".", 2023-10-18T17:06:04.5249185Z "testDependencies": [ 2023-10-18T17:06:04.5249530Z 2023-10-18T17:06:04.5249694Z ], 2023-10-18T17:06:04.5250214Z "appRevision": 170603, 2023-10-18T17:06:04.5250954Z "codeSignCertificateUrlSecretName": "codeSignCertificateUrl", 2023-10-18T17:06:04.5251741Z "vsixFile": "", 2023-10-18T17:06:04.5252222Z "DeployToDemoTest": { 2023-10-18T17:06:04.5252836Z "EnvironmentName": "SandboxDev", 2023-10-18T17:06:04.5253543Z "Branches": "Release", 2023-10-18T17:06:04.5254271Z "AuthContext": "Demo_AuthContext", 2023-10-18T17:06:04.5255146Z "ContinuousDeployment": 2023-10-18T17:06:04.5255807Z }, 2023-10-18T17:06:04.5256333Z "unusedALGoSystemFiles": [ 2023-10-18T17:06:04.5256717Z 2023-10-18T17:06:04.5256907Z ], 2023-10-18T17:06:04.5257429Z "buildModes": [ 2023-10-18T17:06:04.5257714Z 2023-10-18T17:06:04.5257894Z ], 2023-10-18T17:06:04.5258371Z "templateBranch": "", 2023-10-18T17:06:04.5258907Z "DeliverToStorage": { 2023-10-18T17:06:04.5259465Z "Branches": "Release" 2023-10-18T17:06:04.5260074Z }, 2023-10-18T17:06:04.5260606Z "nextMinorSchedule": "0 0 6", 2023-10-18T17:06:04.5261262Z "installPerformanceToolkit": false, 2023-10-18T17:06:04.5261957Z "PullRequestTrigger": "pull_request_target", 2023-10-18T17:06:04.5262609Z "appFolders": [ 2023-10-18T17:06:04.5263080Z "app" 2023-10-18T17:06:04.5263847Z ], 2023-10-18T17:06:04.5264326Z "repoName": "GoGestisoft", 2023-10-18T17:06:04.5264885Z "fullBuildPatterns": [ 2023-10-18T17:06:04.5265235Z 2023-10-18T17:06:04.5265420Z ], 2023-10-18T17:06:04.5265958Z "alwaysBuildAllProjects": false, 2023-10-18T17:06:04.5266618Z "installOnlyReferencedApps": , 2023-10-18T17:06:04.5267244Z "installTestRunner": false, 2023-10-18T17:06:04.5268088Z "adminCenterApiCredentialsSecretName": "adminCenterApiCredentials" 2023-10-18T17:06:04.5270879Z } 2023-10-18T17:06:05.4154090Z GitHubRunnerJson="windows-latest" 2023-10-18T17:06:05.4154958Z GitHubRunnerShell=powershell 2023-10-18T17:06:05.4819893Z ##[group]Run microsoft/AL-Go-Actions/ReadSecrets@v4.0 2023-10-18T17:06:05.4820849Z with: 2023-10-18T17:06:05.4821874Z shell: powershell 2023-10-18T17:06:05.4831086Z gitHubSecrets: { "ACCEPT_INSIDEREULA": "", "GHTOKENWORKFLOW": "", "DEMO_AUTHCONTEXT": "", "STORAGECONTEXT": "", "LICENSEFILEURL": "", "github_token": "", "INSIDERSASTOKEN": "", "AUTHCONTEXT": "" } 2023-10-18T17:06:05.4833440Z getSecrets: DemoQA-AuthContext,DemoQA_AuthContext,AuthContext,DemoQA-EnvironmentName,DemoQA_EnvironmentName,EnvironmentName,projects 2023-10-18T17:06:05.4834811Z useGhTokenWorkflowForPush: false 2023-10-18T17:06:05.4835368Z env: 2023-10-18T17:06:05.4835773Z ALGoOrgSettings: 2023-10-18T17:06:05.4836322Z ALGoRepoSettings: 2023-10-18T17:06:05.4836809Z deviceCode: 2023-10-18T17:06:05.4856834Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","excludeEnvironments":[],"partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":***,"repoVersion":"1.0","doNotPublishApps":false,"doNotSignApps":false,"githubRunnerShell":"powershell","cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":***,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":***,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"failOn":"error","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":170603,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","appFolders":["app"],"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T17:06:05.4876806Z ##[endgroup] 2023-10-18T17:06:05.5071152Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:05.5075286Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:05.5076461Z try { 2023-10-18T17:06:05.5077378Z  D:\a_actions\microsoft\AL-Go-Actions\v4.0\ReadSecrets/ReadSecrets.ps1 -gitHubSecrets '{ 2023-10-18T17:06:05.5078651Z  "ACCEPT_INSIDEREULA": "", 2023-10-18T17:06:05.5079578Z  "GHTOKENWORKFLOW": "", 2023-10-18T17:06:05.5081422Z  "DEMO_AUTHCONTEXT": "", 2023-10-18T17:06:05.5083744Z  "STORAGECONTEXT": "", 2023-10-18T17:06:05.5085802Z  "LICENSEFILEURL": "", 2023-10-18T17:06:05.5086884Z  "github_token": "", 2023-10-18T17:06:05.5088363Z  "INSIDERSASTOKEN": "", 2023-10-18T17:06:05.5090062Z  "AUTHCONTEXT": "" 2023-10-18T17:06:05.5091052Z }' -getSecrets $ENV:_getSecrets -useGhTokenWorkflowForPush $ENV:useGhTokenWorkflowForPush 2023-10-18T17:06:05.5092113Z } 2023-10-18T17:06:05.5092559Z catch { 2023-10-18T17:06:05.5094145Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-18T17:06:05.5095829Z  exit 1 2023-10-18T17:06:05.5096291Z } 2023-10-18T17:06:05.5151286Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T17:06:05.5152236Z env: 2023-10-18T17:06:05.5152650Z ALGoOrgSettings: 2023-10-18T17:06:05.5153155Z ALGoRepoSettings: 2023-10-18T17:06:05.5153631Z deviceCode: 2023-10-18T17:06:05.5175172Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","excludeEnvironments":[],"partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"doNotSignApps":false,"githubRunnerShell":"powershell","cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":},"failOn":"error","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":170603,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","appFolders":["app"],"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T17:06:05.5196362Z _getSecrets: DemoQA-AuthContext,DemoQA_AuthContext,AuthContext,DemoQA-EnvironmentName,DemoQA_EnvironmentName,EnvironmentName,projects 2023-10-18T17:06:05.5197749Z _useGhTokenWorkflowForPush: false 2023-10-18T17:06:05.5198340Z ##[endgroup] 2023-10-18T17:06:06.2744760Z Trying to get the secret (DemoQA-AuthContext) from the github environment. 2023-10-18T17:06:06.2890077Z Could not find secret DemoQA-AuthContext in Github secrets or Azure Key Vault. 2023-10-18T17:06:06.2918809Z Trying to get the secret (DemoQA_AuthContext) from the github environment. 2023-10-18T17:06:06.2922149Z Could not find secret DemoQA_AuthContext in Github secrets or Azure Key Vault. 2023-10-18T17:06:06.2923495Z Trying to get the secret (AuthContext) from the github environment. 2023-10-18T17:06:06.2993078Z Masking value for AuthContext 2023-10-18T17:06:06.3333356Z Secret (AuthContext) was retrieved from the github environment. 2023-10-18T17:06:06.3451446Z Masking value for AuthContext.ClientID 2023-10-18T17:06:06.3520851Z Masking value for AuthContext.ClientSecret 2023-10-18T17:06:06.3595920Z AuthContext successfully read from secret AuthContext 2023-10-18T17:06:06.3636094Z Trying to get the secret (DemoQA-EnvironmentName) from the github environment. 2023-10-18T17:06:06.3649710Z Could not find secret DemoQA-EnvironmentName in Github secrets or Azure Key Vault. 2023-10-18T17:06:06.3661634Z Trying to get the secret (DemoQA_EnvironmentName) from the github environment. 2023-10-18T17:06:06.3675470Z Could not find secret DemoQA_EnvironmentName in Github secrets or Azure Key Vault. 2023-10-18T17:06:06.3687449Z Trying to get the secret (EnvironmentName) from the github environment. 2023-10-18T17:06:06.3699562Z Could not find secret EnvironmentName in Github secrets or Azure Key Vault. 2023-10-18T17:06:06.3712125Z Trying to get the secret (projects) from the github environment. 2023-10-18T17:06:06.3724898Z Could not find secret projects in Github secrets or Azure Key Vault. 2023-10-18T17:06:06.3828786Z The following secrets was not found: DemoQA-AuthContext, DemoQA_AuthContext, DemoQA-EnvironmentName, DemoQA_EnvironmentName, EnvironmentName, projects 2023-10-18T17:06:06.4511825Z ##[group]Run microsoft/AL-Go-Actions/Deploy@v4.0 2023-10-18T17:06:06.4512635Z with: 2023-10-18T17:06:06.4513098Z shell: powershell 2023-10-18T17:06:06.4513635Z environmentName: DemoQA 2023-10-18T17:06:06.4514184Z artifacts: current 2023-10-18T17:06:06.4516607Z type: Publish 2023-10-18T17:06:06.4517364Z token: 2023-10-18T17:06:06.4518057Z parentTelemetryScopeJson: 7b7d 2023-10-18T17:06:06.4518659Z env: 2023-10-18T17:06:06.4519106Z ALGoOrgSettings: 2023-10-18T17:06:06.4519616Z ALGoRepoSettings: 2023-10-18T17:06:06.4520141Z deviceCode: 2023-10-18T17:06:06.4541275Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","excludeEnvironments":[],"partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":***,"repoVersion":"1.0","doNotPublishApps":false,"doNotSignApps":false,"githubRunnerShell":"powershell","cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":***,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":***,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"failOn":"error","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":170603,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","appFolders":["app"],"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T17:06:06.4566225Z Secrets: {"AuthContext":"","DemoQA-AuthContext":"","DemoQA_AuthContext":"","DemoQA-EnvironmentName":"","DemoQA_EnvironmentName":"","EnvironmentName":"","projects":""} 2023-10-18T17:06:06.4567710Z ##[endgroup] 2023-10-18T17:06:06.4753765Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:06.4755605Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T17:06:06.4759093Z try { 2023-10-18T17:06:06.4761471Z  D:\a_actions\microsoft\AL-Go-Actions\v4.0\Deploy/Deploy.ps1 -token $ENV:_token -parentTelemetryScopeJson $ENV:_parentTelemetryScopeJson -environmentName $ENV:_environmentName -artifacts $ENV:_artifacts -type $ENV:_type -deploymentEnvironmentsJson $ENV:deploymentEnvironmentsJson 2023-10-18T17:06:06.4763846Z } 2023-10-18T17:06:06.4764313Z catch { 2023-10-18T17:06:06.4765961Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-18T17:06:06.4767709Z  exit 1 2023-10-18T17:06:06.4768460Z } 2023-10-18T17:06:06.4828358Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T17:06:06.4829316Z env: 2023-10-18T17:06:06.4829775Z ALGoOrgSettings: 2023-10-18T17:06:06.4830318Z ALGoRepoSettings: 2023-10-18T17:06:06.4830831Z deviceCode: 2023-10-18T17:06:06.4850481Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","country":"ca","excludeEnvironments":[],"partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","configPackages":[],"generateDependencyArtifact":false,"templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"enableCodeCop":***,"repoVersion":"1.0","doNotPublishApps":false,"doNotSignApps":false,"githubRunnerShell":"powershell","cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"useProjectDependencies":false,"additionalCountries":[],"enableUICop":***,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"skipUpgrade":false,"enablePerTenantExtensionCop":***,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"failOn":"error","projects":[],"appSourceCopMandatoryAffixes":[],"projectName":".","testDependencies":[],"appRevision":170603,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","vsixFile":"","DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":"Release","AuthContext":"Demo_AuthContext","ContinuousDeployment":***},"unusedALGoSystemFiles":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","appFolders":["app"],"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"installOnlyReferencedApps":,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T17:06:06.4877498Z Secrets: {"AuthContext":"","DemoQA-AuthContext":"","DemoQA_AuthContext":"","DemoQA-EnvironmentName":"","DemoQA_EnvironmentName":"","EnvironmentName":"","projects":""} 2023-10-18T17:06:06.4879306Z _token: *** 2023-10-18T17:06:06.4879844Z _parentTelemetryScopeJson: 7b7d 2023-10-18T17:06:06.4880495Z _environmentName: DemoQA 2023-10-18T17:06:06.4881116Z _artifacts: current 2023-10-18T17:06:06.4881655Z _type: Publish 2023-10-18T17:06:06.4882198Z _deploymentEnvironmentsJson: 2023-10-18T17:06:06.4882792Z ##[endgroup] 2023-10-18T17:06:07.0981179Z ##[error]Unexpected error when running action. Error Message: Cannot bind argument to parameter 'deploymentEnvironmentsJson' because it is an empty string., StackTrace: at , D:\a_temp\01930c27-20fc-4b00-89ee-40a1437c2673.ps1: line 4 <- at , : line 1 2023-10-18T17:06:07.1246809Z ##[error]Process completed with exit code 1. 2023-10-18T17:06:07.1528667Z Post job cleanup. 2023-10-18T17:06:07.4642880Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-10-18T17:06:07.4971584Z git version 2.42.0.windows.2 2023-10-18T17:06:07.5063049Z Temporarily overriding HOME='D:\a_temp\29a2ac38-b45a-4022-bdec-1135f06fb7f9' before making global git config changes 2023-10-18T17:06:07.5064962Z Adding repository directory to the temporary git global config as a safe directory 2023-10-18T17:06:07.5078619Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\GoGestisoft\GoGestisoft 2023-10-18T17:06:07.5510751Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core.sshCommand 2023-10-18T17:06:07.5966697Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-10-18T17:06:08.2997057Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader 2023-10-18T17:06:08.3420545Z http.https://github.com/.extraheader 2023-10-18T17:06:08.3484064Z [command]"C:\Program Files\Git\bin\git.exe" config --local --unset-all http.https://github.com/.extraheader 2023-10-18T17:06:08.3999027Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-10-18T17:06:09.1630688Z Evaluate and set environment url 2023-10-18T17:06:09.1635592Z Evaluated environment url: 2023-10-18T17:06:09.1636806Z Cleaning up orphan processes

freddydk commented 11 months ago

Two things

Branches needs to be an array And then it looks like you have a secret with the value true accessible to the repo, which causes the value true to become an illegal value to transfer from one job to another. Remove that secret.

mabessghaier commented 11 months ago

The branches array is fixed , the second issue comes from the property ContinuousDeployment , I removed the value true now it works , I recommend giving flexibility and leaving both possibilities (True/False) the deployment works fine via the CICD workflow however when I run Publish to envirmenet I get the error below

image

full log

2023-10-18T22:24:18.1919700Z Requested labels: windows-latest 2023-10-18T22:24:18.1920160Z Job defined at: gestisoft-DevProduits/GoGestisoft/.github/workflows/PublishToEnvironment.yaml@refs/heads/Release 2023-10-18T22:24:18.1920258Z Waiting for a runner to pick up this job... 2023-10-18T22:24:18.4510415Z Job is waiting for a hosted runner to come online. 2023-10-18T22:24:23.0970680Z Job is about to start running on the hosted runner: GitHub Actions 1 (hosted) 2023-10-18T22:24:28.0436537Z Current runner version: '2.310.2' 2023-10-18T22:24:28.0466874Z ##[group]Operating System 2023-10-18T22:24:28.0468026Z Microsoft Windows Server 2022 2023-10-18T22:24:28.0468724Z 10.0.20348 2023-10-18T22:24:28.0469268Z Datacenter 2023-10-18T22:24:28.0469802Z ##[endgroup] 2023-10-18T22:24:28.0470429Z ##[group]Runner Image 2023-10-18T22:24:28.0471151Z Image: windows-2022 2023-10-18T22:24:28.0471764Z Version: 20231016.1.0 2023-10-18T22:24:28.0473230Z Included Software: https://github.com/actions/runner-images/blob/win22/20231016.1/images/win/Windows2022-Readme.md 2023-10-18T22:24:28.0475257Z Image Release: https://github.com/actions/runner-images/releases/tag/win22%2F20231016.1 2023-10-18T22:24:28.0476524Z ##[endgroup] 2023-10-18T22:24:28.0477126Z ##[group]Runner Image Provisioner 2023-10-18T22:24:28.0477913Z 2.0.312.1 2023-10-18T22:24:28.0478431Z ##[endgroup] 2023-10-18T22:24:28.0479894Z ##[group]GITHUB_TOKEN Permissions 2023-10-18T22:24:28.0482092Z Actions: read 2023-10-18T22:24:28.0482960Z Contents: read 2023-10-18T22:24:28.0483690Z Metadata: read 2023-10-18T22:24:28.0484310Z ##[endgroup] 2023-10-18T22:24:28.0487223Z Secret source: Actions 2023-10-18T22:24:28.0488046Z Prepare workflow directory 2023-10-18T22:24:28.2071242Z Prepare all required actions 2023-10-18T22:24:28.2295385Z Getting action download info 2023-10-18T22:24:28.4866437Z Download action repository 'actions/checkout@v3' (SHA:f43a0e5ff2bd294095638e18286ca9a3d1956744) 2023-10-18T22:24:29.3316295Z Download action repository 'microsoft/AL-Go-Actions@v4.0' (SHA:ebed332412c4f420057f6e12e9c9c6c841995c6a) 2023-10-18T22:24:30.0161992Z Complete job name: Deploy to DemoQA 2023-10-18T22:24:30.2084092Z ##[group]Run actions/checkout@v3 2023-10-18T22:24:30.2084862Z with: 2023-10-18T22:24:30.2085380Z repository: gestisoft-DevProduits/GoGestisoft 2023-10-18T22:24:30.2086367Z token: 2023-10-18T22:24:30.2086815Z ssh-strict: 2023-10-18T22:24:30.2087308Z persist-credentials: 2023-10-18T22:24:30.2087818Z clean: 2023-10-18T22:24:30.2088349Z sparse-checkout-cone-mode: 2023-10-18T22:24:30.2088935Z fetch-depth: 1 2023-10-18T22:24:30.2089385Z fetch-tags: false 2023-10-18T22:24:30.2089813Z lfs: false 2023-10-18T22:24:30.2090219Z submodules: false 2023-10-18T22:24:30.2090708Z set-safe-directory: 2023-10-18T22:24:30.2091189Z env: 2023-10-18T22:24:30.2091566Z ALGoOrgSettings: 2023-10-18T22:24:30.2092029Z ALGoRepoSettings: 2023-10-18T22:24:30.2092494Z deviceCode: 2023-10-18T22:24:30.2092900Z ##[endgroup] 2023-10-18T22:24:30.6630139Z Syncing repository: gestisoft-DevProduits/GoGestisoft 2023-10-18T22:24:30.6633319Z ##[group]Getting Git version info 2023-10-18T22:24:30.6634586Z Working directory is 'D:\a\GoGestisoft\GoGestisoft' 2023-10-18T22:24:31.0077076Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-10-18T22:24:31.0615393Z git version 2.42.0.windows.2 2023-10-18T22:24:31.0665040Z ##[endgroup] 2023-10-18T22:24:31.0782087Z Temporarily overriding HOME='D:\a_temp\22a5cc02-1516-4bac-95e0-3a2a8f6201ca' before making global git config changes 2023-10-18T22:24:31.0784344Z Adding repository directory to the temporary git global config as a safe directory 2023-10-18T22:24:31.0844090Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\GoGestisoft\GoGestisoft 2023-10-18T22:24:31.1777177Z Deleting the contents of 'D:\a\GoGestisoft\GoGestisoft' 2023-10-18T22:24:31.1783809Z ##[group]Initializing the repository 2023-10-18T22:24:31.1797199Z [command]"C:\Program Files\Git\bin\git.exe" init D:\a\GoGestisoft\GoGestisoft 2023-10-18T22:24:31.3103941Z Initialized empty Git repository in D:/a/GoGestisoft/GoGestisoft/.git/ 2023-10-18T22:24:31.3162986Z [command]"C:\Program Files\Git\bin\git.exe" remote add origin https://github.com/gestisoft-DevProduits/GoGestisoft 2023-10-18T22:24:31.3991861Z ##[endgroup] 2023-10-18T22:24:31.3992813Z ##[group]Disabling automatic garbage collection 2023-10-18T22:24:31.3994107Z [command]"C:\Program Files\Git\bin\git.exe" config --local gc.auto 0 2023-10-18T22:24:31.4196170Z ##[endgroup] 2023-10-18T22:24:31.4196991Z ##[group]Setting up auth 2023-10-18T22:24:31.9362394Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core.sshCommand 2023-10-18T22:24:31.9367300Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-10-18T22:24:33.3804578Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader 2023-10-18T22:24:33.4191748Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-10-18T22:24:33.9689731Z [command]"C:\Program Files\Git\bin\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic *" 2023-10-18T22:24:34.0058481Z ##[endgroup] 2023-10-18T22:24:34.0059382Z ##[group]Fetching the repository 2023-10-18T22:24:34.0103010Z [command]"C:\Program Files\Git\bin\git.exe" -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +b1d1245d34f660b188a4ab50bd09df841981a30b:refs/remotes/origin/Release 2023-10-18T22:24:36.0574120Z remote: Enumerating objects: 250, done.
2023-10-18T22:24:36.0575755Z remote: Counting objects: 0% (1/250)
2023-10-18T22:24:36.0576711Z remote: Counting objects: 1% (3/250)
2023-10-18T22:24:36.0580054Z remote: Counting objects: 2% (5/250)
2023-10-18T22:24:36.0581084Z remote: Counting objects: 3% (8/250)
2023-10-18T22:24:36.0582014Z remote: Counting objects: 4% (10/250)
2023-10-18T22:24:36.0583091Z remote: Counting objects: 5% (13/250)
2023-10-18T22:24:36.0584013Z remote: Counting objects: 6% (15/250)
2023-10-18T22:24:36.0584942Z remote: Counting objects: 7% (18/250)
2023-10-18T22:24:36.0585879Z remote: Counting objects: 8% (20/250)
2023-10-18T22:24:36.0586804Z remote: Counting objects: 9% (23/250)
2023-10-18T22:24:36.0587818Z remote: Counting objects: 10% (25/250)
2023-10-18T22:24:36.0589772Z remote: Counting objects: 11% (28/250)
2023-10-18T22:24:36.0590708Z remote: Counting objects: 12% (30/250)
2023-10-18T22:24:36.0591619Z remote: Counting objects: 13% (33/250)
2023-10-18T22:24:36.0592549Z remote: Counting objects: 14% (35/250)
2023-10-18T22:24:36.0593482Z remote: Counting objects: 15% (38/250)
2023-10-18T22:24:36.0594393Z remote: Counting objects: 16% (40/250)
2023-10-18T22:24:36.0595304Z remote: Counting objects: 17% (43/250)
2023-10-18T22:24:36.0596220Z remote: Counting objects: 18% (45/250)
2023-10-18T22:24:36.0597128Z remote: Counting objects: 19% (48/250)
2023-10-18T22:24:36.0598041Z remote: Counting objects: 20% (50/250)
2023-10-18T22:24:36.0598952Z remote: Counting objects: 21% (53/250)
2023-10-18T22:24:36.0599875Z remote: Counting objects: 22% (55/250)
2023-10-18T22:24:36.0600775Z remote: Counting objects: 23% (58/250)
2023-10-18T22:24:36.0601673Z remote: Counting objects: 24% (60/250)
2023-10-18T22:24:36.0602585Z remote: Counting objects: 25% (63/250)
2023-10-18T22:24:36.0603489Z remote: Counting objects: 26% (65/250)
2023-10-18T22:24:36.0604391Z remote: Counting objects: 27% (68/250)
2023-10-18T22:24:36.0605302Z remote: Counting objects: 28% (70/250)
2023-10-18T22:24:36.0606225Z remote: Counting objects: 29% (73/250)
2023-10-18T22:24:36.0607129Z remote: Counting objects: 30% (75/250)
2023-10-18T22:24:36.0608477Z remote: Counting objects: 31% (78/250)
2023-10-18T22:24:36.0609953Z remote: Counting objects: 32% (80/250)
2023-10-18T22:24:36.0612427Z remote: Counting objects: 33% (83/250)
2023-10-18T22:24:36.0613347Z remote: Counting objects: 34% (85/250)
2023-10-18T22:24:36.0614275Z remote: Counting objects: 35% (88/250)
2023-10-18T22:24:36.0615187Z remote: Counting objects: 36% (90/250)
2023-10-18T22:24:36.0616350Z remote: Counting objects: 37% (93/250)
2023-10-18T22:24:36.0617407Z remote: Counting objects: 38% (95/250)
2023-10-18T22:24:36.0618471Z remote: Counting objects: 39% (98/250)
2023-10-18T22:24:36.0620544Z remote: Counting objects: 40% (100/250)
2023-10-18T22:24:36.0621698Z remote: Counting objects: 41% (103/250)
2023-10-18T22:24:36.0622882Z remote: Counting objects: 42% (105/250)
2023-10-18T22:24:36.0623961Z remote: Counting objects: 43% (108/250)
2023-10-18T22:24:36.0625094Z remote: Counting objects: 44% (110/250)
2023-10-18T22:24:36.0625970Z remote: Counting objects: 45% (113/250)
2023-10-18T22:24:36.0626826Z remote: Counting objects: 46% (115/250)
2023-10-18T22:24:36.0627712Z remote: Counting objects: 47% (118/250)
2023-10-18T22:24:36.0628589Z remote: Counting objects: 48% (120/250)
2023-10-18T22:24:36.0629431Z remote: Counting objects: 49% (123/250)
2023-10-18T22:24:36.0630247Z remote: Counting objects: 50% (125/250)
2023-10-18T22:24:36.0631128Z remote: Counting objects: 51% (128/250)
2023-10-18T22:24:36.0631947Z remote: Counting objects: 52% (130/250)
2023-10-18T22:24:36.0632768Z remote: Counting objects: 53% (133/250)
2023-10-18T22:24:36.0634550Z remote: Counting objects: 54% (135/250)
2023-10-18T22:24:36.0635461Z remote: Counting objects: 55% (138/250)
2023-10-18T22:24:36.0636311Z remote: Counting objects: 56% (140/250)
2023-10-18T22:24:36.0637143Z remote: Counting objects: 57% (143/250)
2023-10-18T22:24:36.0637963Z remote: Counting objects: 58% (145/250)
2023-10-18T22:24:36.0638864Z remote: Counting objects: 59% (148/250)
2023-10-18T22:24:36.0639683Z remote: Counting objects: 60% (150/250)
2023-10-18T22:24:36.0640516Z remote: Counting objects: 61% (153/250)
2023-10-18T22:24:36.0641388Z remote: Counting objects: 62% (155/250)
2023-10-18T22:24:36.0642209Z remote: Counting objects: 63% (158/250)
2023-10-18T22:24:36.0643040Z remote: Counting objects: 64% (160/250)
2023-10-18T22:24:36.0643856Z remote: Counting objects: 65% (163/250)
2023-10-18T22:24:36.0644727Z remote: Counting objects: 66% (165/250)
2023-10-18T22:24:36.0645544Z remote: Counting objects: 67% (168/250)
2023-10-18T22:24:36.0646363Z remote: Counting objects: 68% (170/250)
2023-10-18T22:24:36.0647245Z remote: Counting objects: 69% (173/250)
2023-10-18T22:24:36.0648061Z remote: Counting objects: 70% (175/250)
2023-10-18T22:24:36.0648888Z remote: Counting objects: 71% (178/250)
2023-10-18T22:24:36.0649714Z remote: Counting objects: 72% (180/250)
2023-10-18T22:24:36.0650596Z remote: Counting objects: 73% (183/250)
2023-10-18T22:24:36.0651419Z remote: Counting objects: 74% (185/250)
2023-10-18T22:24:36.0652236Z remote: Counting objects: 75% (188/250)
2023-10-18T22:24:36.0653058Z remote: Counting objects: 76% (190/250)
2023-10-18T22:24:36.0653922Z remote: Counting objects: 77% (193/250)
2023-10-18T22:24:36.0654748Z remote: Counting objects: 78% (195/250)
2023-10-18T22:24:36.0655571Z remote: Counting objects: 79% (198/250)
2023-10-18T22:24:36.0656469Z remote: Counting objects: 80% (200/250)
2023-10-18T22:24:36.0657319Z remote: Counting objects: 81% (203/250)
2023-10-18T22:24:36.0658143Z remote: Counting objects: 82% (205/250)
2023-10-18T22:24:36.0658978Z remote: Counting objects: 83% (208/250)
2023-10-18T22:24:36.0659885Z remote: Counting objects: 84% (210/250)
2023-10-18T22:24:36.0660894Z remote: Counting objects: 85% (213/250)
2023-10-18T22:24:36.0661854Z remote: Counting objects: 86% (215/250)
2023-10-18T22:24:36.0662815Z remote: Counting objects: 87% (218/250)
2023-10-18T22:24:36.0663699Z remote: Counting objects: 88% (220/250)
2023-10-18T22:24:36.0664517Z remote: Counting objects: 89% (223/250)
2023-10-18T22:24:36.0665331Z remote: Counting objects: 90% (225/250)
2023-10-18T22:24:36.0666215Z remote: Counting objects: 91% (228/250)
2023-10-18T22:24:36.0667027Z remote: Counting objects: 92% (230/250)
2023-10-18T22:24:36.0667861Z remote: Counting objects: 93% (233/250)
2023-10-18T22:24:36.0668680Z remote: Counting objects: 94% (235/250)
2023-10-18T22:24:36.0669549Z remote: Counting objects: 95% (238/250)
2023-10-18T22:24:36.0670388Z remote: Counting objects: 96% (240/250)
2023-10-18T22:24:36.0671253Z remote: Counting objects: 97% (243/250)
2023-10-18T22:24:36.0672091Z remote: Counting objects: 98% (245/250)
2023-10-18T22:24:36.0673011Z remote: Counting objects: 99% (248/250)
2023-10-18T22:24:36.0673778Z remote: Counting objects: 100% (250/250)
2023-10-18T22:24:36.0675262Z remote: Counting objects: 100% (250/250), done.
2023-10-18T22:24:36.0676566Z remote: Compressing objects: 0% (1/221)
2023-10-18T22:24:36.0677539Z remote: Compressing objects: 1% (3/221)
2023-10-18T22:24:36.1271556Z remote: Compressing objects: 2% (5/221)
2023-10-18T22:24:36.9629637Z remote: Compressing objects: 3% (7/221)
2023-10-18T22:24:36.9631054Z remote: Compressing objects: 4% (9/221)
2023-10-18T22:24:36.9632043Z remote: Compressing objects: 5% (12/221)
2023-10-18T22:24:36.9632867Z remote: Compressing objects: 6% (14/221)
2023-10-18T22:24:36.9633737Z remote: Compressing objects: 7% (16/221)
2023-10-18T22:24:36.9634576Z remote: Compressing objects: 8% (18/221)
2023-10-18T22:24:36.9635472Z remote: Compressing objects: 9% (20/221)
2023-10-18T22:24:36.9636321Z remote: Compressing objects: 10% (23/221)
2023-10-18T22:24:36.9637186Z remote: Compressing objects: 11% (25/221)
2023-10-18T22:24:36.9638095Z remote: Compressing objects: 12% (27/221)
2023-10-18T22:24:36.9638952Z remote: Compressing objects: 13% (29/221)
2023-10-18T22:24:36.9639818Z remote: Compressing objects: 14% (31/221)
2023-10-18T22:24:36.9640672Z remote: Compressing objects: 15% (34/221)
2023-10-18T22:24:36.9641581Z remote: Compressing objects: 16% (36/221)
2023-10-18T22:24:36.9642451Z remote: Compressing objects: 17% (38/221)
2023-10-18T22:24:36.9643306Z remote: Compressing objects: 18% (40/221)
2023-10-18T22:24:36.9644158Z remote: Compressing objects: 19% (42/221)
2023-10-18T22:24:36.9645125Z remote: Compressing objects: 20% (45/221)
2023-10-18T22:24:36.9645931Z remote: Compressing objects: 21% (47/221)
2023-10-18T22:24:36.9646769Z remote: Compressing objects: 22% (49/221)
2023-10-18T22:24:36.9647647Z remote: Compressing objects: 23% (51/221)
2023-10-18T22:24:36.9648468Z remote: Compressing objects: 24% (54/221)
2023-10-18T22:24:36.9649270Z remote: Compressing objects: 25% (56/221)
2023-10-18T22:24:36.9650092Z remote: Compressing objects: 26% (58/221)
2023-10-18T22:24:36.9651003Z remote: Compressing objects: 27% (60/221)
2023-10-18T22:24:36.9651857Z remote: Compressing objects: 28% (62/221)
2023-10-18T22:24:36.9652699Z remote: Compressing objects: 29% (65/221)
2023-10-18T22:24:36.9653546Z remote: Compressing objects: 30% (67/221)
2023-10-18T22:24:36.9654344Z remote: Compressing objects: 31% (69/221)
2023-10-18T22:24:36.9655171Z remote: Compressing objects: 32% (71/221)
2023-10-18T22:24:36.9655989Z remote: Compressing objects: 33% (73/221)
2023-10-18T22:24:36.9657079Z remote: Compressing objects: 34% (76/221)
2023-10-18T22:24:36.9657928Z remote: Compressing objects: 35% (78/221)
2023-10-18T22:24:36.9658769Z remote: Compressing objects: 36% (80/221)
2023-10-18T22:24:36.9659699Z remote: Compressing objects: 37% (82/221)
2023-10-18T22:24:36.9660530Z remote: Compressing objects: 38% (84/221)
2023-10-18T22:24:36.9661388Z remote: Compressing objects: 39% (87/221)
2023-10-18T22:24:36.9662221Z remote: Compressing objects: 40% (89/221)
2023-10-18T22:24:36.9663101Z remote: Compressing objects: 41% (91/221)
2023-10-18T22:24:36.9663942Z remote: Compressing objects: 42% (93/221)
2023-10-18T22:24:36.9664785Z remote: Compressing objects: 43% (96/221)
2023-10-18T22:24:36.9665646Z remote: Compressing objects: 44% (98/221)
2023-10-18T22:24:36.9666524Z remote: Compressing objects: 45% (100/221)
2023-10-18T22:24:36.9667386Z remote: Compressing objects: 46% (102/221)
2023-10-18T22:24:36.9668219Z remote: Compressing objects: 47% (104/221)
2023-10-18T22:24:36.9669440Z remote: Compressing objects: 48% (107/221)
2023-10-18T22:24:36.9670438Z remote: Compressing objects: 49% (109/221)
2023-10-18T22:24:36.9671493Z remote: Compressing objects: 50% (111/221)
2023-10-18T22:24:36.9672910Z remote: Compressing objects: 51% (113/221)
2023-10-18T22:24:36.9673895Z remote: Compressing objects: 52% (115/221)
2023-10-18T22:24:36.9674821Z remote: Compressing objects: 53% (118/221)
2023-10-18T22:24:36.9676006Z remote: Compressing objects: 54% (120/221)
2023-10-18T22:24:36.9676978Z remote: Compressing objects: 55% (122/221)
2023-10-18T22:24:36.9677911Z remote: Compressing objects: 56% (124/221)
2023-10-18T22:24:36.9678837Z remote: Compressing objects: 57% (126/221)
2023-10-18T22:24:36.9679761Z remote: Compressing objects: 58% (129/221)
2023-10-18T22:24:36.9680747Z remote: Compressing objects: 59% (131/221)
2023-10-18T22:24:36.9681612Z remote: Compressing objects: 60% (133/221)
2023-10-18T22:24:36.9682494Z remote: Compressing objects: 61% (135/221)
2023-10-18T22:24:36.9683382Z remote: Compressing objects: 62% (138/221)
2023-10-18T22:24:36.9684442Z remote: Compressing objects: 63% (140/221)
2023-10-18T22:24:36.9685248Z remote: Compressing objects: 64% (142/221)
2023-10-18T22:24:36.9686062Z remote: Compressing objects: 65% (144/221)
2023-10-18T22:24:36.9686959Z remote: Compressing objects: 66% (146/221)
2023-10-18T22:24:36.9689038Z remote: Compressing objects: 67% (149/221)
2023-10-18T22:24:36.9690006Z remote: Compressing objects: 68% (151/221)
2023-10-18T22:24:36.9690883Z remote: Compressing objects: 69% (153/221)
2023-10-18T22:24:36.9691814Z remote: Compressing objects: 70% (155/221)
2023-10-18T22:24:36.9692713Z remote: Compressing objects: 71% (157/221)
2023-10-18T22:24:36.9693621Z remote: Compressing objects: 72% (160/221)
2023-10-18T22:24:36.9694566Z remote: Compressing objects: 73% (162/221)
2023-10-18T22:24:36.9695470Z remote: Compressing objects: 74% (164/221)
2023-10-18T22:24:36.9824815Z remote: Compressing objects: 75% (166/221)
2023-10-18T22:24:36.9825724Z remote: Compressing objects: 76% (168/221)
2023-10-18T22:24:36.9826519Z remote: Compressing objects: 77% (171/221)
2023-10-18T22:24:36.9827279Z remote: Compressing objects: 78% (173/221)
2023-10-18T22:24:36.9828017Z remote: Compressing objects: 79% (175/221)
2023-10-18T22:24:36.9828790Z remote: Compressing objects: 80% (177/221)
2023-10-18T22:24:36.9829692Z remote: Compressing objects: 81% (180/221)
2023-10-18T22:24:36.9831686Z remote: Compressing objects: 82% (182/221)
2023-10-18T22:24:36.9832467Z remote: Compressing objects: 83% (184/221)
2023-10-18T22:24:36.9834527Z remote: Compressing objects: 84% (186/221)
2023-10-18T22:24:36.9835314Z remote: Compressing objects: 85% (188/221)
2023-10-18T22:24:36.9836077Z remote: Compressing objects: 86% (191/221)
2023-10-18T22:24:36.9836843Z remote: Compressing objects: 87% (193/221)
2023-10-18T22:24:36.9837708Z remote: Compressing objects: 88% (195/221)
2023-10-18T22:24:36.9838499Z remote: Compressing objects: 89% (197/221)
2023-10-18T22:24:36.9839264Z remote: Compressing objects: 90% (199/221)
2023-10-18T22:24:36.9840071Z remote: Compressing objects: 91% (202/221)
2023-10-18T22:24:36.9840870Z remote: Compressing objects: 92% (204/221)
2023-10-18T22:24:36.9841636Z remote: Compressing objects: 93% (206/221)
2023-10-18T22:24:36.9842502Z remote: Compressing objects: 94% (208/221)
2023-10-18T22:24:36.9843206Z remote: Compressing objects: 95% (210/221)
2023-10-18T22:24:36.9843913Z remote: Compressing objects: 96% (213/221)
2023-10-18T22:24:36.9844605Z remote: Compressing objects: 97% (215/221)
2023-10-18T22:24:36.9845298Z remote: Compressing objects: 98% (217/221)
2023-10-18T22:24:36.9845998Z remote: Compressing objects: 99% (219/221)
2023-10-18T22:24:36.9846671Z remote: Compressing objects: 100% (221/221)
2023-10-18T22:24:36.9847421Z remote: Compressing objects: 100% (221/221), done.
2023-10-18T22:24:36.9848274Z Receiving objects: 0% (1/250) 2023-10-18T22:24:36.9848834Z Receiving objects: 1% (3/250) 2023-10-18T22:24:36.9849390Z Receiving objects: 2% (5/250) 2023-10-18T22:24:36.9850811Z Receiving objects: 3% (8/250) 2023-10-18T22:24:36.9851380Z Receiving objects: 4% (10/250) 2023-10-18T22:24:36.9851953Z Receiving objects: 5% (13/250) 2023-10-18T22:24:36.9852508Z Receiving objects: 6% (15/250) 2023-10-18T22:24:36.9853061Z Receiving objects: 7% (18/250) 2023-10-18T22:24:36.9853605Z Receiving objects: 8% (20/250) 2023-10-18T22:24:36.9854179Z Receiving objects: 9% (23/250) 2023-10-18T22:24:36.9854732Z Receiving objects: 10% (25/250) 2023-10-18T22:24:36.9855282Z Receiving objects: 11% (28/250) 2023-10-18T22:24:36.9855843Z Receiving objects: 12% (30/250) 2023-10-18T22:24:36.9856472Z Receiving objects: 13% (33/250) 2023-10-18T22:24:36.9857017Z Receiving objects: 14% (35/250) 2023-10-18T22:24:36.9857559Z Receiving objects: 15% (38/250) 2023-10-18T22:24:36.9858119Z Receiving objects: 16% (40/250) 2023-10-18T22:24:36.9858659Z Receiving objects: 17% (43/250) 2023-10-18T22:24:36.9859205Z Receiving objects: 18% (45/250) 2023-10-18T22:24:36.9859755Z Receiving objects: 19% (48/250) 2023-10-18T22:24:36.9860339Z Receiving objects: 20% (50/250) 2023-10-18T22:24:36.9860883Z Receiving objects: 21% (53/250) 2023-10-18T22:24:36.9861444Z Receiving objects: 22% (55/250) 2023-10-18T22:24:36.9861987Z Receiving objects: 23% (58/250) 2023-10-18T22:24:36.9862584Z Receiving objects: 24% (60/250) 2023-10-18T22:24:36.9863130Z Receiving objects: 25% (63/250) 2023-10-18T22:24:36.9863703Z Receiving objects: 26% (65/250) 2023-10-18T22:24:36.9864247Z Receiving objects: 27% (68/250) 2023-10-18T22:24:36.9864794Z Receiving objects: 28% (70/250) 2023-10-18T22:24:36.9865352Z Receiving objects: 29% (73/250) 2023-10-18T22:24:36.9865896Z Receiving objects: 30% (75/250) 2023-10-18T22:24:36.9866434Z Receiving objects: 31% (78/250) 2023-10-18T22:24:36.9866975Z Receiving objects: 32% (80/250) 2023-10-18T22:24:36.9867534Z Receiving objects: 33% (83/250) 2023-10-18T22:24:36.9868081Z Receiving objects: 34% (85/250) 2023-10-18T22:24:36.9868625Z Receiving objects: 35% (88/250) 2023-10-18T22:24:36.9869170Z Receiving objects: 36% (90/250) 2023-10-18T22:24:36.9869721Z Receiving objects: 37% (93/250) 2023-10-18T22:24:36.9870262Z Receiving objects: 38% (95/250) 2023-10-18T22:24:36.9870802Z Receiving objects: 39% (98/250) 2023-10-18T22:24:36.9871358Z Receiving objects: 40% (100/250) 2023-10-18T22:24:36.9871934Z Receiving objects: 41% (103/250) 2023-10-18T22:24:36.9872657Z Receiving objects: 42% (105/250) 2023-10-18T22:24:36.9873209Z Receiving objects: 43% (108/250) 2023-10-18T22:24:36.9873784Z Receiving objects: 44% (110/250) 2023-10-18T22:24:36.9874336Z Receiving objects: 45% (113/250) 2023-10-18T22:24:36.9874889Z Receiving objects: 46% (115/250) 2023-10-18T22:24:36.9875436Z Receiving objects: 47% (118/250) 2023-10-18T22:24:36.9876002Z Receiving objects: 48% (120/250) 2023-10-18T22:24:36.9876558Z Receiving objects: 49% (123/250) 2023-10-18T22:24:36.9877109Z Receiving objects: 50% (125/250) 2023-10-18T22:24:36.9877667Z Receiving objects: 51% (128/250) 2023-10-18T22:24:36.9878233Z Receiving objects: 52% (130/250) 2023-10-18T22:24:36.9878792Z Receiving objects: 53% (133/250) 2023-10-18T22:24:36.9879345Z Receiving objects: 54% (135/250) 2023-10-18T22:24:36.9879894Z Receiving objects: 55% (138/250) 2023-10-18T22:24:36.9880461Z Receiving objects: 56% (140/250) 2023-10-18T22:24:36.9881014Z Receiving objects: 57% (143/250) 2023-10-18T22:24:36.9881566Z Receiving objects: 58% (145/250) 2023-10-18T22:24:36.9882128Z Receiving objects: 59% (148/250) 2023-10-18T22:24:36.9882678Z Receiving objects: 60% (150/250) 2023-10-18T22:24:36.9883226Z Receiving objects: 61% (153/250) 2023-10-18T22:24:36.9883772Z Receiving objects: 62% (155/250) 2023-10-18T22:24:36.9884331Z Receiving objects: 63% (158/250) 2023-10-18T22:24:36.9884883Z Receiving objects: 64% (160/250) 2023-10-18T22:24:36.9885435Z Receiving objects: 65% (163/250) 2023-10-18T22:24:36.9885982Z Receiving objects: 66% (165/250) 2023-10-18T22:24:36.9886672Z Receiving objects: 67% (168/250) 2023-10-18T22:24:36.9887229Z Receiving objects: 68% (170/250) 2023-10-18T22:24:36.9887789Z Receiving objects: 69% (173/250) 2023-10-18T22:24:36.9888335Z Receiving objects: 70% (175/250) 2023-10-18T22:24:36.9888881Z Receiving objects: 71% (178/250) 2023-10-18T22:24:36.9889442Z Receiving objects: 72% (180/250) 2023-10-18T22:24:36.9889988Z Receiving objects: 73% (183/250) 2023-10-18T22:24:36.9891070Z Receiving objects: 74% (185/250) 2023-10-18T22:24:36.9891646Z Receiving objects: 75% (188/250) 2023-10-18T22:24:36.9892201Z Receiving objects: 76% (190/250) 2023-10-18T22:24:36.9892756Z Receiving objects: 77% (193/250) 2023-10-18T22:24:36.9893305Z Receiving objects: 78% (195/250) 2023-10-18T22:24:36.9893863Z Receiving objects: 79% (198/250) 2023-10-18T22:24:36.9894419Z Receiving objects: 80% (200/250) 2023-10-18T22:24:36.9894966Z Receiving objects: 81% (203/250) 2023-10-18T22:24:36.9895514Z Receiving objects: 82% (205/250) 2023-10-18T22:24:36.9896085Z Receiving objects: 83% (208/250) 2023-10-18T22:24:36.9896639Z Receiving objects: 84% (210/250) 2023-10-18T22:24:36.9897190Z Receiving objects: 85% (213/250) 2023-10-18T22:24:36.9897740Z Receiving objects: 86% (215/250) 2023-10-18T22:24:36.9898306Z Receiving objects: 87% (218/250) 2023-10-18T22:24:36.9898852Z Receiving objects: 88% (220/250) 2023-10-18T22:24:36.9899399Z Receiving objects: 89% (223/250) 2023-10-18T22:24:36.9899968Z Receiving objects: 90% (225/250) 2023-10-18T22:24:36.9900524Z Receiving objects: 91% (228/250) 2023-10-18T22:24:36.9901075Z Receiving objects: 92% (230/250) 2023-10-18T22:24:36.9901624Z Receiving objects: 93% (233/250) 2023-10-18T22:24:36.9902191Z Receiving objects: 94% (235/250) 2023-10-18T22:24:36.9902745Z Receiving objects: 95% (238/250) 2023-10-18T22:24:36.9903295Z Receiving objects: 96% (240/250) 2023-10-18T22:24:36.9903845Z Receiving objects: 97% (243/250) 2023-10-18T22:24:36.9904405Z Receiving objects: 98% (245/250) 2023-10-18T22:24:36.9905583Z remote: Total 250 (delta 71), reused 122 (delta 23), pack-reused 0
2023-10-18T22:24:36.9906472Z Receiving objects: 99% (248/250) 2023-10-18T22:24:36.9907047Z Receiving objects: 100% (250/250) 2023-10-18T22:24:36.9907784Z Receiving objects: 100% (250/250), 10.05 MiB | 29.92 MiB/s, done. 2023-10-18T22:24:36.9908576Z Resolving deltas: 0% (0/71) 2023-10-18T22:24:36.9909109Z Resolving deltas: 1% (1/71) 2023-10-18T22:24:36.9911457Z Resolving deltas: 2% (2/71) 2023-10-18T22:24:36.9911985Z Resolving deltas: 4% (3/71) 2023-10-18T22:24:36.9912511Z Resolving deltas: 5% (4/71) 2023-10-18T22:24:36.9913032Z Resolving deltas: 7% (5/71) 2023-10-18T22:24:36.9913572Z Resolving deltas: 8% (6/71) 2023-10-18T22:24:36.9914089Z Resolving deltas: 9% (7/71) 2023-10-18T22:24:36.9914610Z Resolving deltas: 11% (8/71) 2023-10-18T22:24:36.9915134Z Resolving deltas: 12% (9/71) 2023-10-18T22:24:36.9915674Z Resolving deltas: 14% (10/71) 2023-10-18T22:24:36.9916212Z Resolving deltas: 15% (11/71) 2023-10-18T22:24:36.9916754Z Resolving deltas: 16% (12/71) 2023-10-18T22:24:36.9917922Z Resolving deltas: 18% (13/71) 2023-10-18T22:24:36.9918771Z Resolving deltas: 19% (14/71) 2023-10-18T22:24:36.9919319Z Resolving deltas: 21% (15/71) 2023-10-18T22:24:36.9919862Z Resolving deltas: 22% (16/71) 2023-10-18T22:24:36.9920408Z Resolving deltas: 23% (17/71) 2023-10-18T22:24:36.9920944Z Resolving deltas: 25% (18/71) 2023-10-18T22:24:36.9921580Z Resolving deltas: 26% (19/71) 2023-10-18T22:24:36.9922274Z Resolving deltas: 28% (20/71) 2023-10-18T22:24:36.9922817Z Resolving deltas: 29% (21/71) 2023-10-18T22:24:36.9923345Z Resolving deltas: 30% (22/71) 2023-10-18T22:24:36.9923863Z Resolving deltas: 32% (23/71) 2023-10-18T22:24:36.9924383Z Resolving deltas: 33% (24/71) 2023-10-18T22:24:36.9924927Z Resolving deltas: 35% (25/71) 2023-10-18T22:24:36.9925451Z Resolving deltas: 36% (26/71) 2023-10-18T22:24:36.9925977Z Resolving deltas: 38% (27/71) 2023-10-18T22:24:36.9926495Z Resolving deltas: 39% (28/71) 2023-10-18T22:24:36.9927294Z Resolving deltas: 40% (29/71) 2023-10-18T22:24:36.9927823Z Resolving deltas: 42% (30/71) 2023-10-18T22:24:36.9928345Z Resolving deltas: 43% (31/71) 2023-10-18T22:24:36.9928885Z Resolving deltas: 45% (32/71) 2023-10-18T22:24:36.9929402Z Resolving deltas: 46% (33/71) 2023-10-18T22:24:36.9929923Z Resolving deltas: 47% (34/71) 2023-10-18T22:24:36.9930458Z Resolving deltas: 49% (35/71) 2023-10-18T22:24:36.9930998Z Resolving deltas: 50% (36/71) 2023-10-18T22:24:36.9931519Z Resolving deltas: 52% (37/71) 2023-10-18T22:24:36.9932040Z Resolving deltas: 53% (38/71) 2023-10-18T22:24:36.9932561Z Resolving deltas: 54% (39/71) 2023-10-18T22:24:36.9933101Z Resolving deltas: 56% (40/71) 2023-10-18T22:24:36.9933624Z Resolving deltas: 57% (41/71) 2023-10-18T22:24:36.9934257Z Resolving deltas: 59% (42/71) 2023-10-18T22:24:36.9934743Z Resolving deltas: 60% (43/71) 2023-10-18T22:24:36.9935242Z Resolving deltas: 61% (44/71) 2023-10-18T22:24:36.9935716Z Resolving deltas: 63% (45/71) 2023-10-18T22:24:36.9936210Z Resolving deltas: 64% (46/71) 2023-10-18T22:24:36.9936691Z Resolving deltas: 66% (47/71) 2023-10-18T22:24:36.9937175Z Resolving deltas: 67% (48/71) 2023-10-18T22:24:36.9937639Z Resolving deltas: 69% (49/71) 2023-10-18T22:24:36.9938119Z Resolving deltas: 70% (50/71) 2023-10-18T22:24:36.9938585Z Resolving deltas: 71% (51/71) 2023-10-18T22:24:36.9939066Z Resolving deltas: 73% (52/71) 2023-10-18T22:24:36.9939543Z Resolving deltas: 74% (53/71) 2023-10-18T22:24:36.9940072Z Resolving deltas: 76% (54/71) 2023-10-18T22:24:36.9940557Z Resolving deltas: 77% (55/71) 2023-10-18T22:24:36.9941044Z Resolving deltas: 78% (56/71) 2023-10-18T22:24:36.9941533Z Resolving deltas: 80% (57/71) 2023-10-18T22:24:36.9942019Z Resolving deltas: 81% (58/71) 2023-10-18T22:24:36.9942521Z Resolving deltas: 83% (59/71) 2023-10-18T22:24:36.9943007Z Resolving deltas: 84% (60/71) 2023-10-18T22:24:36.9943484Z Resolving deltas: 85% (61/71) 2023-10-18T22:24:36.9943976Z Resolving deltas: 87% (62/71) 2023-10-18T22:24:36.9944473Z Resolving deltas: 88% (63/71) 2023-10-18T22:24:36.9944960Z Resolving deltas: 90% (64/71) 2023-10-18T22:24:36.9945443Z Resolving deltas: 91% (65/71) 2023-10-18T22:24:36.9945945Z Resolving deltas: 92% (66/71) 2023-10-18T22:24:36.9946430Z Resolving deltas: 94% (67/71) 2023-10-18T22:24:36.9946914Z Resolving deltas: 95% (68/71) 2023-10-18T22:24:36.9947546Z Resolving deltas: 97% (69/71) 2023-10-18T22:24:36.9948038Z Resolving deltas: 98% (70/71) 2023-10-18T22:24:36.9948528Z Resolving deltas: 100% (71/71) 2023-10-18T22:24:36.9949039Z Resolving deltas: 100% (71/71), done. 2023-10-18T22:24:36.9950053Z From https://github.com/gestisoft-DevProduits/GoGestisoft 2023-10-18T22:24:36.9951178Z [new ref] b1d1245d34f660b188a4ab50bd09df841981a30b -> origin/Release 2023-10-18T22:24:36.9953196Z ##[endgroup] 2023-10-18T22:24:36.9953914Z ##[group]Determining the checkout info 2023-10-18T22:24:36.9955503Z ##[endgroup] 2023-10-18T22:24:36.9965659Z ##[group]Checking out the ref 2023-10-18T22:24:36.9967291Z [command]"C:\Program Files\Git\bin\git.exe" checkout --progress --force -B Release refs/remotes/origin/Release 2023-10-18T22:24:37.2497149Z branch 'Release' set up to track 'origin/Release'. 2023-10-18T22:24:37.2501199Z Switched to a new branch 'Release' 2023-10-18T22:24:37.2565913Z ##[endgroup] 2023-10-18T22:24:37.3050960Z [command]"C:\Program Files\Git\bin\git.exe" log -1 --format='%H' 2023-10-18T22:24:37.3396405Z 'b1d1245d34f660b188a4ab50bd09df841981a30b' 2023-10-18T22:24:37.4112787Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:37.4114808Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:37.4116067Z $envName = 'DemoQA'.split(' ')[0] 2023-10-18T22:24:37.4117487Z Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "envName=$envName" 2023-10-18T22:24:37.4172762Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T22:24:37.4173745Z env: 2023-10-18T22:24:37.4174129Z ALGoOrgSettings: 2023-10-18T22:24:37.4174591Z ALGoRepoSettings: 2023-10-18T22:24:37.4175067Z deviceCode: 2023-10-18T22:24:37.4175473Z ##[endgroup] 2023-10-18T22:24:37.8221067Z ##[group]Run microsoft/AL-Go-Actions/ReadSettings@v4.0 2023-10-18T22:24:37.8221905Z with: 2023-10-18T22:24:37.8222292Z shell: powershell 2023-10-18T22:24:37.8222740Z project: . 2023-10-18T22:24:37.8223115Z env: 2023-10-18T22:24:37.8223471Z ALGoOrgSettings: 2023-10-18T22:24:37.8223928Z ALGoRepoSettings: 2023-10-18T22:24:37.8224508Z deviceCode: 2023-10-18T22:24:37.8224873Z ##[endgroup] 2023-10-18T22:24:37.8621373Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:37.8623186Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:37.8624352Z try { 2023-10-18T22:24:37.8625514Z  D:\a_actions\microsoft\AL-Go-Actions\v4.0\ReadSettings/ReadSettings.ps1 -project $ENV:_project -get $ENV:get 2023-10-18T22:24:37.8626780Z } 2023-10-18T22:24:37.8627309Z catch { 2023-10-18T22:24:37.8629722Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-18T22:24:37.8631617Z  exit 1 2023-10-18T22:24:37.8632030Z } 2023-10-18T22:24:37.8679515Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T22:24:37.8680500Z env: 2023-10-18T22:24:37.8680875Z ALGoOrgSettings: 2023-10-18T22:24:37.8681332Z ALGoRepoSettings: 2023-10-18T22:24:37.8681796Z deviceCode: 2023-10-18T22:24:37.8682213Z _project: . 2023-10-18T22:24:37.8682597Z _get: 2023-10-18T22:24:37.8682957Z ##[endgroup] 2023-10-18T22:24:38.4149197Z Applying settings from D:\a\GoGestisoft\GoGestisoft.github\AL-Go-Settings.json 2023-10-18T22:24:38.5258668Z Applying settings from D:\a\GoGestisoft\GoGestisoft.AL-Go\settings.json 2023-10-18T22:24:38.5285583Z No settings found in D:\a\GoGestisoft\GoGestisoft.github\Publish To Environment.settings.json 2023-10-18T22:24:38.5309450Z No settings found in D:\a\GoGestisoft\GoGestisoft.AL-Go\Publish To Environment.settings.json 2023-10-18T22:24:38.5311259Z No settings found in D:\a\GoGestisoft\GoGestisoft.AL-Go\mabessghaier.settings.json 2023-10-18T22:24:39.6004390Z SETTINGS: 2023-10-18T22:24:39.8142835Z { 2023-10-18T22:24:39.8143929Z "keyVaultCertificateUrlSecretName": "", 2023-10-18T22:24:39.8148056Z "microsoftTelemetryConnectionString": "InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/", 2023-10-18T22:24:39.8151430Z "nextMajorSchedule": "0 0 * 6", 2023-10-18T22:24:39.8152749Z "type": "PTE", 2023-10-18T22:24:39.8154028Z "sendExtendedTelemetryToMicrosoft": false, 2023-10-18T22:24:39.8155443Z "appBuild": 20231018, 2023-10-18T22:24:39.8156532Z "installTestApps": [ 2023-10-18T22:24:39.8157320Z 2023-10-18T22:24:39.8157817Z ], 2023-10-18T22:24:39.8158882Z "versioningStrategy": 2, 2023-10-18T22:24:39.8160010Z "installApps": [ 2023-10-18T22:24:39.8161823Z "https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app" 2023-10-18T22:24:39.8163794Z ], 2023-10-18T22:24:39.8164822Z "DeployToProduction": { 2023-10-18T22:24:39.8166138Z "EnvironmentName": "Production", 2023-10-18T22:24:39.8167590Z "Branches": [ 2023-10-18T22:24:39.8168954Z "Release" 2023-10-18T22:24:39.8170289Z ], 2023-10-18T22:24:39.8171693Z "ContinuousDeployment": false 2023-10-18T22:24:39.8173042Z }, 2023-10-18T22:24:39.8174177Z "installTestLibraries": false, 2023-10-18T22:24:39.8175397Z "runNumberOffset": 0, 2023-10-18T22:24:39.8181114Z "codeSignCertificatePasswordSecretName": "codeSignCertificatePassword", 2023-10-18T22:24:39.8182683Z "vsixFile": "", 2023-10-18T22:24:39.8183261Z "country": "ca", 2023-10-18T22:24:39.8183951Z "partnerTelemetryConnectionString": "", 2023-10-18T22:24:39.8184776Z "doNotRunTests": false, 2023-10-18T22:24:39.8185645Z "runs-on": "windows-latest", 2023-10-18T22:24:39.8186390Z "generateDependencyArtifact": false, 2023-10-18T22:24:39.8187154Z "excludeEnvironments": [ 2023-10-18T22:24:39.8187649Z 2023-10-18T22:24:39.8187928Z ], 2023-10-18T22:24:39.8188702Z "keyVaultCertificatePasswordSecretName": "", 2023-10-18T22:24:39.8189551Z "rulesetFile": "", 2023-10-18T22:24:39.8190285Z "licenseFileUrlSecretName": "licenseFileUrl", 2023-10-18T22:24:39.8191199Z "enableExternalRulesets": false, 2023-10-18T22:24:39.8201206Z "memoryLimit": "", 2023-10-18T22:24:39.8202014Z "keyVaultClientIdSecretName": "", 2023-10-18T22:24:39.8202765Z "testFolders": [ 2023-10-18T22:24:39.8203343Z "Test" 2023-10-18T22:24:39.8203929Z ], 2023-10-18T22:24:39.8204716Z "githubRunner": "windows-latest", 2023-10-18T22:24:39.8205446Z "doNotBuildTests": false, 2023-10-18T22:24:39.8206080Z "environments": [ 2023-10-18T22:24:39.8206499Z 2023-10-18T22:24:39.8206759Z ], 2023-10-18T22:24:39.8207321Z "companyName": "", 2023-10-18T22:24:39.8207922Z "assignPremiumPlan": false, 2023-10-18T22:24:39.8208565Z "artifact": "", 2023-10-18T22:24:39.8209287Z "ghTokenWorkflowSecretName": "ghTokenWorkflow", 2023-10-18T22:24:39.8210146Z "enableTaskScheduler": false, 2023-10-18T22:24:39.8210933Z "DeployToDemoTest": { 2023-10-18T22:24:39.8211525Z "EnvironmentName": "SandboxDev", 2023-10-18T22:24:39.8212179Z "Branches": [ 2023-10-18T22:24:39.8212784Z "Release" 2023-10-18T22:24:39.8215463Z ] 2023-10-18T22:24:39.8216494Z }, 2023-10-18T22:24:39.8217123Z "enableCodeCop": **, 2023-10-18T22:24:39.8217632Z "repoVersion": "1.0", 2023-10-18T22:24:39.8218163Z "doNotPublishApps": false, 2023-10-18T22:24:39.8218732Z "unusedALGoSystemFiles": [ 2023-10-18T22:24:39.8219130Z 2023-10-18T22:24:39.8219282Z ], 2023-10-18T22:24:39.8219843Z "githubRunnerShell": "powershell", 2023-10-18T22:24:39.8220460Z "appFolders": [ 2023-10-18T22:24:39.8220900Z "app" 2023-10-18T22:24:39.8221368Z ], 2023-10-18T22:24:39.8221808Z "cacheKeepDays": 3, 2023-10-18T22:24:39.8222319Z "bcptTestFolders": [ 2023-10-18T22:24:39.8228178Z 2023-10-18T22:24:39.8228387Z ], 2023-10-18T22:24:39.8228926Z "updateDependencies": false, 2023-10-18T22:24:39.8229535Z "cacheImageName": "my", 2023-10-18T22:24:39.8230122Z "treatTestFailuresAsWarnings": false, 2023-10-18T22:24:39.8230798Z "additionalCountries": [ 2023-10-18T22:24:39.8231172Z 2023-10-18T22:24:39.8231319Z ], 2023-10-18T22:24:39.8231889Z "enableUICop":
, 2023-10-18T22:24:39.8232379Z "customCodeCops": [ 2023-10-18T22:24:39.8232707Z 2023-10-18T22:24:39.8232847Z ], 2023-10-18T22:24:39.8233342Z "appDependencies": [ 2023-10-18T22:24:39.8233669Z 2023-10-18T22:24:39.8233826Z ], 2023-10-18T22:24:39.8234321Z "doNotRunBcptTests": false, 2023-10-18T22:24:39.8234956Z "enablePerTenantExtensionCop": , 2023-10-18T22:24:39.8235648Z "appDependencyProbingPaths": [ 2023-10-18T22:24:39.8236072Z 2023-10-18T22:24:39.8236241Z ], 2023-10-18T22:24:39.8236800Z "useCompilerFolder": false, 2023-10-18T22:24:39.8238452Z "installTestFramework": false, 2023-10-18T22:24:39.8239237Z "keyVaultCodesignCertificateName": "", 2023-10-18T22:24:39.8239859Z "keyVaultName": "", 2023-10-18T22:24:39.8240395Z "installOnlyReferencedApps": , 2023-10-18T22:24:39.8241042Z "obsoleteTagMinAllowedMajorMinor": "", 2023-10-18T22:24:39.8241699Z "applicationDependency": "18.0.0.0", 2023-10-18T22:24:39.8242762Z "applicationInsightsConnectionStringSecretName": "applicationInsightsConnectionString", 2023-10-18T22:24:39.8243811Z "shell": "powershell", 2023-10-18T22:24:39.8244281Z "DeployToDemoQA": { 2023-10-18T22:24:39.8245171Z "EnvironmentName": "SandboxQA", 2023-10-18T22:24:39.8246021Z "Branches": [ 2023-10-18T22:24:39.8246739Z "Release" 2023-10-18T22:24:39.8247450Z ], 2023-10-18T22:24:39.8248357Z "ContinuousDeployment": false 2023-10-18T22:24:39.8249484Z }, 2023-10-18T22:24:39.8250242Z "failOn": "error", 2023-10-18T22:24:39.8251478Z "templateUrl": "https://github.com/microsoft/AL-Go-PTE@main", 2023-10-18T22:24:39.8252625Z "projects": [ 2023-10-18T22:24:39.8253084Z 2023-10-18T22:24:39.8253502Z ], 2023-10-18T22:24:39.8254230Z "projectName": ".", 2023-10-18T22:24:39.8255080Z "testDependencies": [ 2023-10-18T22:24:39.8255586Z 2023-10-18T22:24:39.8255971Z ], 2023-10-18T22:24:39.8256719Z "appRevision": 222439, 2023-10-18T22:24:39.8257831Z "codeSignCertificateUrlSecretName": "codeSignCertificateUrl", 2023-10-18T22:24:39.8258946Z "configPackages": [ 2023-10-18T22:24:39.8259490Z 2023-10-18T22:24:39.8259796Z ], 2023-10-18T22:24:39.8260674Z "useProjectDependencies": false, 2023-10-18T22:24:39.8261610Z "appSourceCopMandatoryAffixes": [ 2023-10-18T22:24:39.8262299Z 2023-10-18T22:24:39.8262651Z ], 2023-10-18T22:24:39.8263550Z "buildModes": [ 2023-10-18T22:24:39.8264234Z 2023-10-18T22:24:39.8264629Z ], 2023-10-18T22:24:39.8265381Z "templateBranch": "", 2023-10-18T22:24:39.8268851Z "DeliverToStorage": { 2023-10-18T22:24:39.8269840Z "Branches": "Release" 2023-10-18T22:24:39.8270645Z }, 2023-10-18T22:24:39.8271381Z "nextMinorSchedule": "0 0 6", 2023-10-18T22:24:39.8272258Z "installPerformanceToolkit": false, 2023-10-18T22:24:39.8273140Z "PullRequestTrigger": "pull_request_target", 2023-10-18T22:24:39.8273997Z "doNotSignApps": false, 2023-10-18T22:24:39.8274742Z "repoName": "GoGestisoft", 2023-10-18T22:24:39.8275462Z "fullBuildPatterns": [ 2023-10-18T22:24:39.8275855Z 2023-10-18T22:24:39.8276119Z ], 2023-10-18T22:24:39.8276806Z "alwaysBuildAllProjects": false, 2023-10-18T22:24:39.8277613Z "skipUpgrade": false, 2023-10-18T22:24:39.8320861Z "installTestRunner": false, 2023-10-18T22:24:39.8322264Z "adminCenterApiCredentialsSecretName": "adminCenterApiCredentials" 2023-10-18T22:24:39.8323271Z } 2023-10-18T22:24:40.1967838Z GitHubRunnerJson="windows-latest" 2023-10-18T22:24:40.1983529Z GitHubRunnerShell=powershell 2023-10-18T22:24:40.2573599Z ##[group]Run microsoft/AL-Go-Actions/ReadSecrets@v4.0 2023-10-18T22:24:40.2574414Z with: 2023-10-18T22:24:40.2574817Z shell: powershell 2023-10-18T22:24:40.2583733Z gitHubSecrets: { "LICENSEFILEURL": "", "github_token": "", "ACCEPT_INSIDEREULA": "", "INSIDERSASTOKEN": "", "STORAGECONTEXT": "", "AUTHCONTEXT": "", "GHTOKENWORKFLOW": "" } 2023-10-18T22:24:40.2586212Z getSecrets: DemoQA-AuthContext,DemoQA_AuthContext,AuthContext,DemoQA-EnvironmentName,DemoQA_EnvironmentName,EnvironmentName,projects 2023-10-18T22:24:40.2587761Z useGhTokenWorkflowForPush: false 2023-10-18T22:24:40.2588336Z env: 2023-10-18T22:24:40.2588711Z ALGoOrgSettings: 2023-10-18T22:24:40.2589169Z ALGoRepoSettings: 2023-10-18T22:24:40.2589646Z deviceCode: 2023-10-18T22:24:40.2614136Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"DeployToProduction":{"EnvironmentName":"Production","Branches":["Release"],"ContinuousDeployment":false},"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","vsixFile":"","country":"ca","partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":["Release"]},"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"unusedALGoSystemFiles":[],"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","installOnlyReferencedApps":,"obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":["Release"],"ContinuousDeployment":false},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"projectName":".","testDependencies":[],"appRevision":222439,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","configPackages":[],"useProjectDependencies":false,"appSourceCopMandatoryAffixes":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"skipUpgrade":false,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T22:24:40.2637951Z ##[endgroup] 2023-10-18T22:24:40.2804748Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:40.2808873Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:40.2810218Z try { 2023-10-18T22:24:40.2811122Z  D:\a_actions\microsoft\AL-Go-Actions\v4.0\ReadSecrets/ReadSecrets.ps1 -gitHubSecrets '{ 2023-10-18T22:24:40.2813741Z  "LICENSEFILEURL": "", 2023-10-18T22:24:40.2814560Z  "github_token": "", 2023-10-18T22:24:40.2815158Z  "ACCEPT_INSIDEREULA": "", 2023-10-18T22:24:40.2816722Z  "INSIDERSASTOKEN": "", 2023-10-18T22:24:40.2819162Z  "STORAGECONTEXT": "", 2023-10-18T22:24:40.2821130Z  "AUTHCONTEXT": "", 2023-10-18T22:24:40.2822001Z  "GHTOKENWORKFLOW": "" 2023-10-18T22:24:40.2823108Z }' -getSecrets $ENV:_getSecrets -useGhTokenWorkflowForPush $ENV:useGhTokenWorkflowForPush 2023-10-18T22:24:40.2824190Z } 2023-10-18T22:24:40.2824573Z catch { 2023-10-18T22:24:40.2826350Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-18T22:24:40.2828221Z  exit 1 2023-10-18T22:24:40.2828637Z } 2023-10-18T22:24:40.2876014Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T22:24:40.2876986Z env: 2023-10-18T22:24:40.2877365Z ALGoOrgSettings: 2023-10-18T22:24:40.2877832Z ALGoRepoSettings: 2023-10-18T22:24:40.2878307Z deviceCode: 2023-10-18T22:24:40.2903832Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"DeployToProduction":{"EnvironmentName":"Production","Branches":["Release"],"ContinuousDeployment":false},"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","vsixFile":"","country":"ca","partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":["Release"]},"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"unusedALGoSystemFiles":[],"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","installOnlyReferencedApps":,"obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":["Release"],"ContinuousDeployment":false},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"projectName":".","testDependencies":[],"appRevision":222439,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","configPackages":[],"useProjectDependencies":false,"appSourceCopMandatoryAffixes":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"skipUpgrade":false,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T22:24:40.2928975Z _getSecrets: DemoQA-AuthContext,DemoQA_AuthContext,AuthContext,DemoQA-EnvironmentName,DemoQA_EnvironmentName,EnvironmentName,projects 2023-10-18T22:24:40.2930535Z _useGhTokenWorkflowForPush: false 2023-10-18T22:24:40.2931203Z ##[endgroup] 2023-10-18T22:24:40.9529100Z Trying to get the secret (DemoQA-AuthContext) from the github environment. 2023-10-18T22:24:40.9722415Z Could not find secret DemoQA-AuthContext in Github secrets or Azure Key Vault. 2023-10-18T22:24:40.9733954Z Trying to get the secret (DemoQA_AuthContext) from the github environment. 2023-10-18T22:24:40.9749022Z Could not find secret DemoQA_AuthContext in Github secrets or Azure Key Vault. 2023-10-18T22:24:40.9762648Z Trying to get the secret (AuthContext) from the github environment. 2023-10-18T22:24:40.9822407Z Masking value for AuthContext 2023-10-18T22:24:41.0099194Z Secret (AuthContext) was retrieved from the github environment. 2023-10-18T22:24:41.0192290Z Masking value for AuthContext.ClientID 2023-10-18T22:24:41.0256685Z Masking value for AuthContext.ClientSecret 2023-10-18T22:24:41.0329219Z AuthContext successfully read from secret AuthContext 2023-10-18T22:24:41.0353288Z Trying to get the secret (DemoQA-EnvironmentName) from the github environment. 2023-10-18T22:24:41.0374321Z Could not find secret DemoQA-EnvironmentName in Github secrets or Azure Key Vault. 2023-10-18T22:24:41.0375915Z Trying to get the secret (DemoQA_EnvironmentName) from the github environment. 2023-10-18T22:24:41.0378111Z Could not find secret DemoQA_EnvironmentName in Github secrets or Azure Key Vault. 2023-10-18T22:24:41.0394459Z Trying to get the secret (EnvironmentName) from the github environment. 2023-10-18T22:24:41.0395760Z Could not find secret EnvironmentName in Github secrets or Azure Key Vault. 2023-10-18T22:24:41.0402659Z Trying to get the secret (projects) from the github environment. 2023-10-18T22:24:41.0413425Z Could not find secret projects in Github secrets or Azure Key Vault. 2023-10-18T22:24:41.0515435Z The following secrets was not found: DemoQA-AuthContext, DemoQA_AuthContext, DemoQA-EnvironmentName, DemoQA_EnvironmentName, EnvironmentName, projects 2023-10-18T22:24:41.1092544Z ##[group]Run microsoft/AL-Go-Actions/Deploy@v4.0 2023-10-18T22:24:41.1093410Z with: 2023-10-18T22:24:41.1093836Z shell: powershell 2023-10-18T22:24:41.1094340Z environmentName: DemoQA 2023-10-18T22:24:41.1095110Z artifacts: latest 2023-10-18T22:24:41.1095589Z type: Publish 2023-10-18T22:24:41.1100359Z deploymentEnvironmentsJson: {"DemoQA":{"EnvironmentType":"SaaS","Branches":["Release"],"runs-on":["windows-latest"],"Projects":"","SyncMode":null,"EnvironmentName":"SandboxQA","BranchesFromPolicy":[],"ContinuousDeployment":false},"Production":{"EnvironmentType":"SaaS","Branches":["Release"],"runs-on":["windows-latest"],"Projects":"","SyncMode":null,"EnvironmentName":"Production","BranchesFromPolicy":[],"ContinuousDeployment":false},"DemoTest":{"EnvironmentType":"SaaS","Branches":["Release"],"runs-on":["windows-latest"],"Projects":"*","SyncMode":null,"EnvironmentName":"SandboxDev","BranchesFromPolicy":[],"ContinuousDeployment":null}} 2023-10-18T22:24:41.1105575Z token: 2023-10-18T22:24:41.1106066Z parentTelemetryScopeJson: 7b7d 2023-10-18T22:24:41.1106660Z env: 2023-10-18T22:24:41.1107065Z ALGoOrgSettings: 2023-10-18T22:24:41.1107554Z ALGoRepoSettings: 2023-10-18T22:24:41.1108057Z deviceCode: 2023-10-18T22:24:41.1133070Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"DeployToProduction":{"EnvironmentName":"Production","Branches":["Release"],"ContinuousDeployment":false},"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","vsixFile":"","country":"ca","partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":["Release"]},"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"unusedALGoSystemFiles":[],"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","installOnlyReferencedApps":,"obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":["Release"],"ContinuousDeployment":false},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"projectName":".","testDependencies":[],"appRevision":222439,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","configPackages":[],"useProjectDependencies":false,"appSourceCopMandatoryAffixes":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"skipUpgrade":false,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T22:24:41.1161542Z Secrets: {"AuthContext":"","DemoQA-AuthContext":"","DemoQA_AuthContext":"","DemoQA-EnvironmentName":"","DemoQA_EnvironmentName":"","EnvironmentName":"","projects":""} 2023-10-18T22:24:41.1163267Z ##[endgroup] 2023-10-18T22:24:41.1318545Z ##[group]Run $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:41.1320424Z $errorActionPreference = "Stop"; $ProgressPreference = "SilentlyContinue"; Set-StrictMode -Version 2.0 2023-10-18T22:24:41.1321613Z try { 2023-10-18T22:24:41.1324247Z  D:\a_actions\microsoft\AL-Go-Actions\v4.0\Deploy/Deploy.ps1 -token $ENV:_token -parentTelemetryScopeJson $ENV:_parentTelemetryScopeJson -environmentName $ENV:_environmentName -artifacts $ENV:_artifacts -type $ENV:_type -deploymentEnvironmentsJson $ENV:deploymentEnvironmentsJson 2023-10-18T22:24:41.1326928Z } 2023-10-18T22:24:41.1327368Z catch { 2023-10-18T22:24:41.1329168Z  Write-Host "::ERROR::Unexpected error when running action. Error Message: $($.Exception.Message.Replace("r",'').Replace("n",' ')), StackTrace: $($_.ScriptStackTrace.Replace("r",'').Replace("n",' <- '))"; 2023-10-18T22:24:41.1331107Z  exit 1 2023-10-18T22:24:41.1331572Z } 2023-10-18T22:24:41.1379036Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2023-10-18T22:24:41.1380052Z env: 2023-10-18T22:24:41.1380459Z ALGoOrgSettings: 2023-10-18T22:24:41.1380974Z ALGoRepoSettings: 2023-10-18T22:24:41.1381475Z deviceCode: 2023-10-18T22:24:41.1406906Z Settings: {"keyVaultCertificateUrlSecretName":"","microsoftTelemetryConnectionString":"InstrumentationKey=84bd9223-67d4-4378-8590-9e4a46023be2;IngestionEndpoint=https://westeurope-1.in.applicationinsights.azure.com/","nextMajorSchedule":"0 0 6","type":"PTE","sendExtendedTelemetryToMicrosoft":false,"appBuild":20231018,"installTestApps":[],"versioningStrategy":2,"installApps":["https://gscustomers.blob.core.windows.net/apps/Gestisoft_GoGestisoft Report.app"],"DeployToProduction":{"EnvironmentName":"Production","Branches":["Release"],"ContinuousDeployment":false},"installTestLibraries":false,"runNumberOffset":0,"codeSignCertificatePasswordSecretName":"codeSignCertificatePassword","vsixFile":"","country":"ca","partnerTelemetryConnectionString":"","doNotRunTests":false,"runs-on":"windows-latest","generateDependencyArtifact":false,"excludeEnvironments":[],"keyVaultCertificatePasswordSecretName":"","rulesetFile":"","licenseFileUrlSecretName":"licenseFileUrl","enableExternalRulesets":false,"memoryLimit":"","keyVaultClientIdSecretName":"","testFolders":["Test"],"githubRunner":"windows-latest","doNotBuildTests":false,"environments":[],"companyName":"","assignPremiumPlan":false,"artifact":"","ghTokenWorkflowSecretName":"ghTokenWorkflow","enableTaskScheduler":false,"DeployToDemoTest":{"EnvironmentName":"SandboxDev","Branches":["Release"]},"enableCodeCop":,"repoVersion":"1.0","doNotPublishApps":false,"unusedALGoSystemFiles":[],"githubRunnerShell":"powershell","appFolders":["app"],"cacheKeepDays":3,"bcptTestFolders":[],"updateDependencies":false,"cacheImageName":"my","treatTestFailuresAsWarnings":false,"additionalCountries":[],"enableUICop":,"customCodeCops":[],"appDependencies":[],"doNotRunBcptTests":false,"enablePerTenantExtensionCop":,"appDependencyProbingPaths":[],"useCompilerFolder":false,"installTestFramework":false,"keyVaultCodesignCertificateName":"","keyVaultName":"","installOnlyReferencedApps":,"obsoleteTagMinAllowedMajorMinor":"","applicationDependency":"18.0.0.0","applicationInsightsConnectionStringSecretName":"applicationInsightsConnectionString","shell":"powershell","DeployToDemoQA":{"EnvironmentName":"SandboxQA","Branches":["Release"],"ContinuousDeployment":false},"failOn":"error","templateUrl":"https://github.com/microsoft/AL-Go-PTE@main","projects":[],"projectName":".","testDependencies":[],"appRevision":222439,"codeSignCertificateUrlSecretName":"codeSignCertificateUrl","configPackages":[],"useProjectDependencies":false,"appSourceCopMandatoryAffixes":[],"buildModes":[],"templateBranch":"","DeliverToStorage":{"Branches":"Release"},"nextMinorSchedule":"0 0 6","installPerformanceToolkit":false,"PullRequestTrigger":"pull_request_target","doNotSignApps":false,"repoName":"GoGestisoft","fullBuildPatterns":[],"alwaysBuildAllProjects":false,"skipUpgrade":false,"installTestRunner":false,"adminCenterApiCredentialsSecretName":"adminCenterApiCredentials"} 2023-10-18T22:24:41.1434984Z Secrets: {"AuthContext":"","DemoQA-AuthContext":"","DemoQA_AuthContext":"","DemoQA-EnvironmentName":"","DemoQA_EnvironmentName":"","EnvironmentName":"","projects":""} 2023-10-18T22:24:41.1436701Z _token: 2023-10-18T22:24:41.1437204Z _parentTelemetryScopeJson: 7b7d 2023-10-18T22:24:41.1437861Z _environmentName: DemoQA 2023-10-18T22:24:41.1438399Z _artifacts: latest 2023-10-18T22:24:41.1438897Z _type: Publish 2023-10-18T22:24:41.1443668Z _deploymentEnvironmentsJson: {"DemoQA":{"EnvironmentType":"SaaS","Branches":["Release"],"runs-on":["windows-latest"],"Projects":"","SyncMode":null,"EnvironmentName":"SandboxQA","BranchesFromPolicy":[],"ContinuousDeployment":false},"Production":{"EnvironmentType":"SaaS","Branches":["Release"],"runs-on":["windows-latest"],"Projects":"","SyncMode":null,"EnvironmentName":"Production","BranchesFromPolicy":[],"ContinuousDeployment":false},"DemoTest":{"EnvironmentType":"SaaS","Branches":["Release"],"runs-on":["windows-latest"],"Projects":"","SyncMode":null,"EnvironmentName":"SandboxDev","BranchesFromPolicy":[],"ContinuousDeployment":null}} 2023-10-18T22:24:41.1448578Z ##[endgroup] 2023-10-18T22:24:41.7837150Z Downloading BcContainerHelper latest version from CDN 2023-10-18T22:24:43.2012371Z Import from C:\ProgramData\BcContainerHelper\6.0.0\BcContainerHelper\BcContainerHelper.ps1 2023-10-18T22:24:43.8397513Z BcContainerHelper version 6.0.0 2023-10-18T22:24:47.1301526Z BC.HelperFunctions emits usage statistics telemetry to Microsoft 2023-10-18T22:24:50.3691167Z Analyzing artifacts matching -Release-- 2023-10-18T22:24:50.3721054Z https://api.github.com/repos/gestisoft-DevProduits/GoGestisoft/actions/artifacts?per_page=100&page=1 2023-10-18T22:24:50.7387614Z Matching artifacts: 2023-10-18T22:24:50.7448169Z - GoGestisoft-Release-Apps-1.0.20231018.205740 2023-10-18T22:24:50.7539855Z Analyzing artifacts matching -Release-- 2023-10-18T22:24:50.7541377Z https://api.github.com/repos/gestisoft-DevProduits/GoGestisoft/actions/artifacts?per_page=100&page=1 2023-10-18T22:24:50.9445663Z Matching artifacts: 2023-10-18T22:24:50.9506617Z - No matching artifacts found 2023-10-18T22:24:51.6938253Z AL-Go action ran: Deploy Telemetry Correlation Id: f755c661-25d6-4935-8aaf-7b4dbd8876b8 2023-10-18T22:24:51.8102346Z ##[error]Unexpected error when running action. Error Message: Could not find any Apps artifacts for projects , version latest, StackTrace: at , D:\a_actions\microsoft\AL-Go-Actions\v4.0\Deploy\Deploy.ps1: line 142 <- at , D:\a_temp\296c7e9c-ad40-46c1-8faf-2f7b0ada1958.ps1: line 4 <- at , : line 1 2023-10-18T22:24:51.9042179Z ##[error]Process completed with exit code 1. 2023-10-18T22:24:51.9560511Z Post job cleanup. 2023-10-18T22:24:52.4322948Z [command]"C:\Program Files\Git\bin\git.exe" version 2023-10-18T22:24:52.7104699Z git version 2.42.0.windows.2 2023-10-18T22:24:52.7445023Z Temporarily overriding HOME='D:\a_temp\00fddf6c-e783-441c-bbd7-14284a2dbbe7' before making global git config changes 2023-10-18T22:24:52.7526500Z Adding repository directory to the temporary git global config as a safe directory 2023-10-18T22:24:52.7629767Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\GoGestisoft\GoGestisoft 2023-10-18T22:24:52.7918000Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core.sshCommand 2023-10-18T22:24:52.8434178Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2023-10-18T22:24:53.5056608Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader 2023-10-18T22:24:53.5374434Z http.https://github.com/.extraheader 2023-10-18T22:24:53.5424011Z [command]"C:\Program Files\Git\bin\git.exe" config --local --unset-all http.https://github.com/.extraheader 2023-10-18T22:24:53.5793041Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2023-10-18T22:24:54.1886637Z Evaluate and set environment url 2023-10-18T22:24:54.1891842Z Evaluated environment url: 2023-10-18T22:24:54.1892757Z Cleaning up orphan processes