Static-web-apps: Failed to find a default file in the app artifacts folder error

Created on 20 Jun 2020  路  8Comments  路  Source: Azure/static-web-apps

Regardless of what I do, I end up with the following error code as I try to execute my GitHub workflow.

Failed to find a default file in the app artifacts folder (dist/). Valid default files: index.html,Index.html.

I have tried changing the workflow file, even explicitly trying to npm run-script build before the action - name: Build And Deploy

My app isn't really that special. It's an Angular frontend, static files, and I created it using the _"Static Web app wizard"_ through Azure. Can somebody provide an example of how I (very basic) create an Angular app, and write the YAML file to deploy it from my GitHub account to my static web app Azure resource please ...?

Most helpful comment

Hallelujah man :)

10 points to you. VS Code was playing _"tricks"_ on me. As I expanded the _"dist/"_ folder, it expanded into my app's name folder too - Works like a charm now :)

Ask your boss for a raise man, and let him know I think you deserve it ... ^_^

Psst

Of course, I still need to configure the DNS, and connect to my API, but that's not your problem :)

All 8 comments

Here is an example that has configurations for angular: https://docs.microsoft.com/en-us/azure/static-web-apps/getting-started?tabs=angular

Thx, but I have already gone through that wizard many times, without luck. I've tried changing the app_artifact_location setting, I have tried building the site before running Azure/static-web-apps-deploy, etc, etc, etc.

My site is really simple, and it successfully builds _locally_ if I use npm run-script build, at which it puts the output into a dist folder, where I can clearly see an index.html file.

But for some reasons, as I run the workflow file on GitHub, it fails :(

And the message is always the same Failed to find a default file in the app artifacts folder. My app is not particularly special, as far as I know, as you can see in the screenshot attached ... :/

Screenshot 2020-06-20 at 9 18 25 PM

Can you share your workflow file configuration and sample Github Action log?

name: Azure Static Web Apps CI/CD

on:
  push:
    branches:
      - master
  pull_request:
    types: [opened, synchronize, reopened, closed]
    branches:
      - master

jobs:
  build_and_deploy_job:
    if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
    runs-on: ubuntu-latest
    name: Build and Deploy Job
    steps:
      - uses: actions/checkout@v2
        with:
          submodules: true
      - name: Build And Deploy
        id: builddeploy
        uses: Azure/[email protected]
        with:
          azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_POLITE_DESERT_0EC194E03 }}
          repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
          action: "upload"
          ###### Repository/Build Configurations - These values can be configured to match you app requirements. ######
          # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
          app_location: "/" # App source code path
          api_location: "api" # Api source code path - optional
          app_artifact_location: "dist/" # Built app content directory - optional
          ###### End of Repository/Build Configurations ######

  close_pull_request_job:
    if: github.event_name == 'pull_request' && github.event.action == 'closed'
    runs-on: ubuntu-latest
    name: Close Pull Request Job
    steps:
      - name: Close Pull Request
        id: closepullrequest
        uses: Azure/[email protected]
        with:
          azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_POLITE_DESERT_0EC194E03 }}
          action: "close"

And log below ...

2020-06-20T18:12:26.9118441Z ##[section]Starting: Request a runner to run this job
2020-06-20T18:12:27.2455453Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2020-06-20T18:12:27.2455502Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-06-20T18:12:27.2455525Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-06-20T18:12:27.3786658Z ##[section]Finishing: Request a runner to run this job
2020-06-20T18:12:34.6095664Z Current runner version: '2.169.1'
2020-06-20T18:12:34.6125040Z ##[group]Operating System
2020-06-20T18:12:34.6125913Z Ubuntu
2020-06-20T18:12:34.6126154Z 18.04.4
2020-06-20T18:12:34.6126379Z LTS
2020-06-20T18:12:34.6126625Z ##[endgroup]
2020-06-20T18:12:34.6126809Z ##[group]Virtual Environment
2020-06-20T18:12:34.6127067Z Environment: ubuntu-18.04
2020-06-20T18:12:34.6127338Z Version: 20200525.2
2020-06-20T18:12:34.6127668Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20200525.2/images/linux/Ubuntu1804-README.md
2020-06-20T18:12:34.6127958Z ##[endgroup]
2020-06-20T18:12:34.6128967Z Prepare workflow directory
2020-06-20T18:12:34.6329515Z Prepare all required actions
2020-06-20T18:12:34.6341067Z Download action repository 'actions/checkout@v2'
2020-06-20T18:12:36.6046628Z Download action repository 'Azure/[email protected]'
2020-06-20T18:12:37.0174928Z Build container for action use: '/home/runner/work/_actions/Azure/static-web-apps-deploy/v0.0.1-preview/Dockerfile'.
2020-06-20T18:12:37.0235875Z ##[command]/usr/bin/docker build -t c27d31:6519a35d48d34fd99ecac2b54114991b "/home/runner/work/_actions/Azure/static-web-apps-deploy/v0.0.1-preview"
2020-06-20T18:12:37.5611520Z Sending build context to Docker daemon 20.99kB
2020-06-20T18:12:37.5664914Z
2020-06-20T18:12:37.5665399Z Step 1/3 : FROM mcr.microsoft.com/appsvc/staticappsclient:stable
2020-06-20T18:12:37.8523509Z stable: Pulling from appsvc/staticappsclient
2020-06-20T18:12:37.8537928Z c0c53f743a40: Pulling fs layer
2020-06-20T18:12:37.8547910Z 66997431d390: Pulling fs layer
2020-06-20T18:12:37.8560042Z 0ea865e2909f: Pulling fs layer
2020-06-20T18:12:37.8560378Z 584bf23912b7: Pulling fs layer
2020-06-20T18:12:37.8574000Z 3c4c73959f29: Pulling fs layer
2020-06-20T18:12:37.8574262Z ce36d49da643: Pulling fs layer
2020-06-20T18:12:37.8574502Z cf52e6437c88: Pulling fs layer
2020-06-20T18:12:37.8574824Z 1e3403b9212c: Pulling fs layer
2020-06-20T18:12:37.8575069Z 4b9f02780479: Pulling fs layer
2020-06-20T18:12:37.8575308Z a741e4401061: Pulling fs layer
2020-06-20T18:12:37.8575546Z 76f2bf975f50: Pulling fs layer
2020-06-20T18:12:37.8575784Z a79095cec128: Pulling fs layer
2020-06-20T18:12:37.8576021Z 39e7ed56a29d: Pulling fs layer
2020-06-20T18:12:37.8576256Z beee8b83d806: Pulling fs layer
2020-06-20T18:12:37.8576492Z cd88624105e1: Pulling fs layer
2020-06-20T18:12:37.8576722Z 23c62fafe1f3: Pulling fs layer
2020-06-20T18:12:37.8576955Z 3011c23dceab: Pulling fs layer
2020-06-20T18:12:37.8577190Z f37687397c1b: Pulling fs layer
2020-06-20T18:12:37.8577530Z 0aa6df0f8847: Pulling fs layer
2020-06-20T18:12:37.8577766Z 4e5df8be64e3: Pulling fs layer
2020-06-20T18:12:37.8577998Z a79095cec128: Waiting
2020-06-20T18:12:37.8578237Z 39e7ed56a29d: Waiting
2020-06-20T18:12:37.8578455Z beee8b83d806: Waiting
2020-06-20T18:12:37.8578895Z cd88624105e1: Waiting
2020-06-20T18:12:37.8579144Z 23c62fafe1f3: Waiting
2020-06-20T18:12:37.8579375Z 3011c23dceab: Waiting
2020-06-20T18:12:37.8579603Z f37687397c1b: Waiting
2020-06-20T18:12:37.8579845Z 0aa6df0f8847: Waiting
2020-06-20T18:12:37.8580074Z 4e5df8be64e3: Waiting
2020-06-20T18:12:37.8580848Z 584bf23912b7: Waiting
2020-06-20T18:12:37.8581084Z 3c4c73959f29: Waiting
2020-06-20T18:12:37.8581311Z ce36d49da643: Waiting
2020-06-20T18:12:37.8582188Z cf52e6437c88: Waiting
2020-06-20T18:12:37.8582423Z 1e3403b9212c: Waiting
2020-06-20T18:12:37.8582656Z 4b9f02780479: Waiting
2020-06-20T18:12:37.8582884Z a741e4401061: Waiting
2020-06-20T18:12:37.8583113Z 76f2bf975f50: Waiting
2020-06-20T18:12:37.9770737Z 0ea865e2909f: Verifying Checksum
2020-06-20T18:12:37.9774041Z 0ea865e2909f: Download complete
2020-06-20T18:12:38.1971692Z 66997431d390: Verifying Checksum
2020-06-20T18:12:38.1972601Z 66997431d390: Download complete
2020-06-20T18:12:38.3127187Z c0c53f743a40: Verifying Checksum
2020-06-20T18:12:38.3129099Z c0c53f743a40: Download complete
2020-06-20T18:12:38.4735734Z 584bf23912b7: Verifying Checksum
2020-06-20T18:12:38.4736454Z 584bf23912b7: Download complete
2020-06-20T18:12:38.7707565Z cf52e6437c88: Verifying Checksum
2020-06-20T18:12:38.7851368Z cf52e6437c88: Download complete
2020-06-20T18:12:38.8859748Z ce36d49da643: Verifying Checksum
2020-06-20T18:12:38.8861393Z ce36d49da643: Download complete
2020-06-20T18:12:39.1056304Z 4b9f02780479: Verifying Checksum
2020-06-20T18:12:39.1057313Z 4b9f02780479: Download complete
2020-06-20T18:12:39.1180609Z 1e3403b9212c: Verifying Checksum
2020-06-20T18:12:39.1181192Z 1e3403b9212c: Download complete
2020-06-20T18:12:39.2168499Z a741e4401061: Verifying Checksum
2020-06-20T18:12:39.2168825Z a741e4401061: Download complete
2020-06-20T18:12:39.2197948Z 76f2bf975f50: Verifying Checksum
2020-06-20T18:12:39.2205288Z 76f2bf975f50: Download complete
2020-06-20T18:12:39.3215392Z a79095cec128: Verifying Checksum
2020-06-20T18:12:39.3232782Z a79095cec128: Download complete
2020-06-20T18:12:39.3395920Z 39e7ed56a29d: Verifying Checksum
2020-06-20T18:12:39.3416079Z 39e7ed56a29d: Download complete
2020-06-20T18:12:39.4468392Z beee8b83d806: Verifying Checksum
2020-06-20T18:12:39.4468823Z beee8b83d806: Download complete
2020-06-20T18:12:39.4589644Z cd88624105e1: Verifying Checksum
2020-06-20T18:12:39.4591238Z cd88624105e1: Download complete
2020-06-20T18:12:39.8839724Z 3011c23dceab: Verifying Checksum
2020-06-20T18:12:39.8839941Z 3011c23dceab: Download complete
2020-06-20T18:12:39.9805068Z 23c62fafe1f3: Verifying Checksum
2020-06-20T18:12:39.9805346Z 23c62fafe1f3: Download complete
2020-06-20T18:12:40.0687739Z f37687397c1b: Verifying Checksum
2020-06-20T18:12:40.0687938Z f37687397c1b: Download complete
2020-06-20T18:12:40.0852860Z 0aa6df0f8847: Verifying Checksum
2020-06-20T18:12:40.0853040Z 0aa6df0f8847: Download complete
2020-06-20T18:12:40.1869306Z 3c4c73959f29: Verifying Checksum
2020-06-20T18:12:40.1869497Z 3c4c73959f29: Download complete
2020-06-20T18:12:40.4336712Z 4e5df8be64e3: Verifying Checksum
2020-06-20T18:12:40.4337718Z 4e5df8be64e3: Download complete
2020-06-20T18:12:41.2777312Z c0c53f743a40: Pull complete
2020-06-20T18:12:41.6071418Z 66997431d390: Pull complete
2020-06-20T18:12:41.7584470Z 0ea865e2909f: Pull complete
2020-06-20T18:12:44.4156573Z 584bf23912b7: Pull complete
2020-06-20T18:12:52.0295410Z 3c4c73959f29: Pull complete
2020-06-20T18:12:54.0697391Z ce36d49da643: Pull complete
2020-06-20T18:12:55.5309150Z cf52e6437c88: Pull complete
2020-06-20T18:12:55.5716822Z 1e3403b9212c: Pull complete
2020-06-20T18:12:55.6186783Z 4b9f02780479: Pull complete
2020-06-20T18:12:55.7115441Z a741e4401061: Pull complete
2020-06-20T18:12:55.8200531Z 76f2bf975f50: Pull complete
2020-06-20T18:12:55.8629076Z a79095cec128: Pull complete
2020-06-20T18:12:55.9047141Z 39e7ed56a29d: Pull complete
2020-06-20T18:12:55.9432933Z beee8b83d806: Pull complete
2020-06-20T18:12:55.9760598Z cd88624105e1: Pull complete
2020-06-20T18:12:59.1620572Z 23c62fafe1f3: Pull complete
2020-06-20T18:13:00.4140903Z 3011c23dceab: Pull complete
2020-06-20T18:13:00.7744943Z f37687397c1b: Pull complete
2020-06-20T18:13:00.8121981Z 0aa6df0f8847: Pull complete
2020-06-20T18:13:01.6349583Z 4e5df8be64e3: Pull complete
2020-06-20T18:13:01.6388031Z Digest: sha256:13709f6292a24f34fd2460d9656bb659c0a714f13bb06e0d77aa8486daaf91f6
2020-06-20T18:13:01.6413799Z Status: Downloaded newer image for mcr.microsoft.com/appsvc/staticappsclient:stable
2020-06-20T18:13:01.6425129Z ---> 3e4d9b094fd2
2020-06-20T18:13:01.6426515Z Step 2/3 : COPY entrypoint.sh /entrypoint.sh
2020-06-20T18:13:11.2111600Z ---> 9fa0c1d283d4
2020-06-20T18:13:11.2111911Z Step 3/3 : ENTRYPOINT ["sh", "/entrypoint.sh"]
2020-06-20T18:13:11.2383914Z ---> Running in 63ac69bef5fc
2020-06-20T18:13:12.5130965Z Removing intermediate container 63ac69bef5fc
2020-06-20T18:13:12.5131169Z ---> bf924ce4aef9
2020-06-20T18:13:12.5131292Z Successfully built bf924ce4aef9
2020-06-20T18:13:12.5257902Z Successfully tagged c27d31:6519a35d48d34fd99ecac2b54114991b
2020-06-20T18:13:12.5507009Z ##[group]Run actions/checkout@v2
2020-06-20T18:13:12.5507295Z with:
2020-06-20T18:13:12.5507493Z submodules: true
2020-06-20T18:13:12.5507625Z repository: polterguy/anarq.frontend
2020-06-20T18:13:12.5508095Z token: *
2020-06-20T18:13:12.5508222Z ssh-strict: true
2020-06-20T18:13:12.5508347Z persist-credentials: true
2020-06-20T18:13:12.5508473Z clean: true
2020-06-20T18:13:12.5508597Z fetch-depth: 1
2020-06-20T18:13:12.5508721Z lfs: false
2020-06-20T18:13:12.5508845Z ##[endgroup]
2020-06-20T18:13:13.0266944Z Syncing repository: polterguy/anarq.frontend
2020-06-20T18:13:13.0267285Z ##[group]Getting Git version info
2020-06-20T18:13:13.0267906Z Working directory is '/home/runner/work/anarq.frontend/anarq.frontend'
2020-06-20T18:13:13.0288217Z [command]/usr/bin/git version
2020-06-20T18:13:13.0545642Z git version 2.26.2
2020-06-20T18:13:13.0570449Z ##[endgroup]
2020-06-20T18:13:13.0578695Z Deleting the contents of '/home/runner/work/anarq.frontend/anarq.frontend'
2020-06-20T18:13:13.0585958Z ##[group]Initializing the repository
2020-06-20T18:13:13.0591178Z [command]/usr/bin/git init /home/runner/work/anarq.frontend/anarq.frontend
2020-06-20T18:13:13.0782104Z Initialized empty Git repository in /home/runner/work/anarq.frontend/anarq.frontend/.git/
2020-06-20T18:13:13.0792782Z [command]/usr/bin/git remote add origin https://github.com/polterguy/anarq.frontend
2020-06-20T18:13:13.0861950Z ##[endgroup]
2020-06-20T18:13:13.0864146Z ##[group]Disabling automatic garbage collection
2020-06-20T18:13:13.0865558Z [command]/usr/bin/git config --local gc.auto 0
2020-06-20T18:13:13.0893678Z ##[endgroup]
2020-06-20T18:13:13.0907389Z ##[group]Setting up auth
2020-06-20T18:13:13.0924352Z [command]/usr/bin/git config --local --name-only --get-regexp core.sshCommand
2020-06-20T18:13:13.0964092Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-06-20T18:13:13.1438847Z [command]/usr/bin/git config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader
2020-06-20T18:13:13.1494489Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-06-20T18:13:13.1756066Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic

2020-06-20T18:13:13.1821353Z ##[endgroup]
2020-06-20T18:13:13.1823529Z ##[group]Fetching the repository
2020-06-20T18:13:13.1838251Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +f3b5ec01c51e89f1e63f9e0cc17cc996a10ea8c7:refs/remotes/origin/master
2020-06-20T18:13:13.6123764Z remote: Enumerating objects: 195, done.
2020-06-20T18:13:13.6127513Z remote: Counting objects: 0% (1/195)
2020-06-20T18:13:13.6128691Z remote: Counting objects: 1% (2/195)
2020-06-20T18:13:13.6129695Z remote: Counting objects: 2% (4/195)
2020-06-20T18:13:13.6130107Z remote: Counting objects: 3% (6/195)
2020-06-20T18:13:13.6139193Z remote: Counting objects: 4% (8/195)
2020-06-20T18:13:13.6140915Z remote: Counting objects: 5% (10/195)
2020-06-20T18:13:13.6141301Z remote: Counting objects: 6% (12/195)
2020-06-20T18:13:13.6142165Z remote: Counting objects: 7% (14/195)
2020-06-20T18:13:13.6142509Z remote: Counting objects: 8% (16/195)
2020-06-20T18:13:13.6142831Z remote: Counting objects: 9% (18/195)
2020-06-20T18:13:13.6143150Z remote: Counting objects: 10% (20/195)
2020-06-20T18:13:13.6143463Z remote: Counting objects: 11% (22/195)
2020-06-20T18:13:13.6143831Z remote: Counting objects: 12% (24/195)
2020-06-20T18:13:13.6144112Z remote: Counting objects: 13% (26/195)
2020-06-20T18:13:13.6144400Z remote: Counting objects: 14% (28/195)
2020-06-20T18:13:13.6145050Z remote: Counting objects: 15% (30/195)
2020-06-20T18:13:13.6145349Z remote: Counting objects: 16% (32/195)
2020-06-20T18:13:13.6145625Z remote: Counting objects: 17% (34/195)
2020-06-20T18:13:13.6146049Z remote: Counting objects: 18% (36/195)
2020-06-20T18:13:13.6146321Z remote: Counting objects: 19% (38/195)
2020-06-20T18:13:13.6146601Z remote: Counting objects: 20% (39/195)
2020-06-20T18:13:13.6146869Z remote: Counting objects: 21% (41/195)
2020-06-20T18:13:13.6147142Z remote: Counting objects: 22% (43/195)
2020-06-20T18:13:13.6147475Z remote: Counting objects: 23% (45/195)
2020-06-20T18:13:13.6148725Z remote: Counting objects: 24% (47/195)
2020-06-20T18:13:13.6149008Z remote: Counting objects: 25% (49/195)
2020-06-20T18:13:13.6149343Z remote: Counting objects: 26% (51/195)
2020-06-20T18:13:13.6149650Z remote: Counting objects: 27% (53/195)
2020-06-20T18:13:13.6149904Z remote: Counting objects: 28% (55/195)
2020-06-20T18:13:13.6150126Z remote: Counting objects: 29% (57/195)
2020-06-20T18:13:13.6150364Z remote: Counting objects: 30% (59/195)
2020-06-20T18:13:13.6150602Z remote: Counting objects: 31% (61/195)
2020-06-20T18:13:13.6150851Z remote: Counting objects: 32% (63/195)
2020-06-20T18:13:13.6151092Z remote: Counting objects: 33% (65/195)
2020-06-20T18:13:13.6170501Z remote: Counting objects: 34% (67/195)
2020-06-20T18:13:13.6197441Z remote: Counting objects: 35% (69/195)
2020-06-20T18:13:13.6197603Z remote: Counting objects: 36% (71/195)
2020-06-20T18:13:13.6197738Z remote: Counting objects: 37% (73/195)
2020-06-20T18:13:13.6197869Z remote: Counting objects: 38% (75/195)
2020-06-20T18:13:13.6198003Z remote: Counting objects: 39% (77/195)
2020-06-20T18:13:13.6198117Z remote: Counting objects: 40% (78/195)
2020-06-20T18:13:13.6198263Z remote: Counting objects: 41% (80/195)
2020-06-20T18:13:13.6198394Z remote: Counting objects: 42% (82/195)
2020-06-20T18:13:13.6198525Z remote: Counting objects: 43% (84/195)
2020-06-20T18:13:13.6198653Z remote: Counting objects: 44% (86/195)
2020-06-20T18:13:13.6198787Z remote: Counting objects: 45% (88/195)
2020-06-20T18:13:13.6198913Z remote: Counting objects: 46% (90/195)
2020-06-20T18:13:13.6199039Z remote: Counting objects: 47% (92/195)
2020-06-20T18:13:13.6199163Z remote: Counting objects: 48% (94/195)
2020-06-20T18:13:13.6199287Z remote: Counting objects: 49% (96/195)
2020-06-20T18:13:13.6199411Z remote: Counting objects: 50% (98/195)
2020-06-20T18:13:13.6199538Z remote: Counting objects: 51% (100/195)
2020-06-20T18:13:13.6199668Z remote: Counting objects: 52% (102/195)
2020-06-20T18:13:13.6199798Z remote: Counting objects: 53% (104/195)
2020-06-20T18:13:13.6199932Z remote: Counting objects: 54% (106/195)
2020-06-20T18:13:13.6200059Z remote: Counting objects: 55% (108/195)
2020-06-20T18:13:13.6200172Z remote: Counting objects: 56% (110/195)
2020-06-20T18:13:13.6200300Z remote: Counting objects: 57% (112/195)
2020-06-20T18:13:13.6200434Z remote: Counting objects: 58% (114/195)
2020-06-20T18:13:13.6200562Z remote: Counting objects: 59% (116/195)
2020-06-20T18:13:13.6200687Z remote: Counting objects: 60% (117/195)
2020-06-20T18:13:13.6200813Z remote: Counting objects: 61% (119/195)
2020-06-20T18:13:13.6200939Z remote: Counting objects: 62% (121/195)
2020-06-20T18:13:13.6201066Z remote: Counting objects: 63% (123/195)
2020-06-20T18:13:13.6201263Z remote: Counting objects: 64% (125/195)
2020-06-20T18:13:13.6201393Z remote: Counting objects: 65% (127/195)
2020-06-20T18:13:13.6201519Z remote: Counting objects: 66% (129/195)
2020-06-20T18:13:13.6201644Z remote: Counting objects: 67% (131/195)
2020-06-20T18:13:13.6201951Z remote: Counting objects: 68% (133/195)
2020-06-20T18:13:13.6202086Z remote: Counting objects: 69% (135/195)
2020-06-20T18:13:13.6202213Z remote: Counting objects: 70% (137/195)
2020-06-20T18:13:13.6202427Z remote: Counting objects: 71% (139/195)
2020-06-20T18:13:13.6202553Z remote: Counting objects: 72% (141/195)
2020-06-20T18:13:13.6202680Z remote: Counting objects: 73% (143/195)
2020-06-20T18:13:13.6202805Z remote: Counting objects: 74% (145/195)
2020-06-20T18:13:13.6202933Z remote: Counting objects: 75% (147/195)
2020-06-20T18:13:13.6203063Z remote: Counting objects: 76% (149/195)
2020-06-20T18:13:13.6203175Z remote: Counting objects: 77% (151/195)
2020-06-20T18:13:13.6203303Z remote: Counting objects: 78% (153/195)
2020-06-20T18:13:13.6203433Z remote: Counting objects: 79% (155/195)
2020-06-20T18:13:13.6203561Z remote: Counting objects: 80% (156/195)
2020-06-20T18:13:13.6203693Z remote: Counting objects: 81% (158/195)
2020-06-20T18:13:13.6203821Z remote: Counting objects: 82% (160/195)
2020-06-20T18:13:13.6203951Z remote: Counting objects: 83% (162/195)
2020-06-20T18:13:13.6204084Z remote: Counting objects: 84% (164/195)
2020-06-20T18:13:13.6204211Z remote: Counting objects: 85% (166/195)
2020-06-20T18:13:13.6204339Z remote: Counting objects: 86% (168/195)
2020-06-20T18:13:13.6204466Z remote: Counting objects: 87% (170/195)
2020-06-20T18:13:13.6204592Z remote: Counting objects: 88% (172/195)
2020-06-20T18:13:13.6205605Z remote: Counting objects: 89% (174/195)
2020-06-20T18:13:13.6205782Z remote: Counting objects: 90% (176/195)
2020-06-20T18:13:13.6205912Z remote: Counting objects: 91% (178/195)
2020-06-20T18:13:13.6206047Z remote: Counting objects: 92% (180/195)
2020-06-20T18:13:13.6206176Z remote: Counting objects: 93% (182/195)
2020-06-20T18:13:13.6206298Z remote: Counting objects: 94% (184/195)
2020-06-20T18:13:13.6208276Z remote: Counting objects: 95% (186/195)
2020-06-20T18:13:13.6208418Z remote: Counting objects: 96% (188/195)
2020-06-20T18:13:13.6208547Z remote: Counting objects: 97% (190/195)
2020-06-20T18:13:13.6208736Z remote: Counting objects: 98% (192/195)
2020-06-20T18:13:13.6208867Z remote: Counting objects: 99% (194/195)
2020-06-20T18:13:13.6208996Z remote: Counting objects: 100% (195/195)
2020-06-20T18:13:13.6209132Z remote: Counting objects: 100% (195/195), done.
2020-06-20T18:13:13.6209271Z remote: Compressing objects: 0% (1/170)
2020-06-20T18:13:13.6209402Z remote: Compressing objects: 1% (2/170)
2020-06-20T18:13:13.6209530Z remote: Compressing objects: 2% (4/170)
2020-06-20T18:13:13.6209657Z remote: Compressing objects: 3% (6/170)
2020-06-20T18:13:13.6209784Z remote: Compressing objects: 4% (7/170)
2020-06-20T18:13:13.6209914Z remote: Compressing objects: 5% (9/170)
2020-06-20T18:13:13.6210043Z remote: Compressing objects: 6% (11/170)
2020-06-20T18:13:13.6210173Z remote: Compressing objects: 7% (12/170)
2020-06-20T18:13:13.6210306Z remote: Compressing objects: 8% (14/170)
2020-06-20T18:13:13.6210423Z remote: Compressing objects: 9% (16/170)
2020-06-20T18:13:13.6210554Z remote: Compressing objects: 10% (17/170)
2020-06-20T18:13:13.6210683Z remote: Compressing objects: 11% (19/170)
2020-06-20T18:13:13.6210813Z remote: Compressing objects: 12% (21/170)
2020-06-20T18:13:13.6210941Z remote: Compressing objects: 13% (23/170)
2020-06-20T18:13:13.6211070Z remote: Compressing objects: 14% (24/170)
2020-06-20T18:13:13.6211198Z remote: Compressing objects: 15% (26/170)
2020-06-20T18:13:13.6211367Z remote: Compressing objects: 16% (28/170)
2020-06-20T18:13:13.6227555Z remote: Compressing objects: 17% (29/170)
2020-06-20T18:13:13.6258572Z remote: Compressing objects: 18% (31/170)
2020-06-20T18:13:13.6268602Z remote: Compressing objects: 19% (33/170)
2020-06-20T18:13:13.6296030Z remote: Compressing objects: 20% (34/170)
2020-06-20T18:13:13.6300635Z remote: Compressing objects: 21% (36/170)
2020-06-20T18:13:13.6330060Z remote: Compressing objects: 22% (38/170)
2020-06-20T18:13:13.6362680Z remote: Compressing objects: 23% (40/170)
2020-06-20T18:13:13.6364627Z remote: Compressing objects: 24% (41/170)
2020-06-20T18:13:13.6364796Z remote: Compressing objects: 25% (43/170)
2020-06-20T18:13:13.6364934Z remote: Compressing objects: 26% (45/170)
2020-06-20T18:13:13.6365069Z remote: Compressing objects: 27% (46/170)
2020-06-20T18:13:13.6365543Z remote: Compressing objects: 28% (48/170)
2020-06-20T18:13:13.6365683Z remote: Compressing objects: 29% (50/170)
2020-06-20T18:13:13.6365832Z remote: Compressing objects: 30% (51/170)
2020-06-20T18:13:13.6365968Z remote: Compressing objects: 31% (53/170)
2020-06-20T18:13:13.6366102Z remote: Compressing objects: 32% (55/170)
2020-06-20T18:13:13.6366232Z remote: Compressing objects: 33% (57/170)
2020-06-20T18:13:13.6366369Z remote: Compressing objects: 34% (58/170)
2020-06-20T18:13:13.6371027Z remote: Compressing objects: 35% (60/170)
2020-06-20T18:13:13.6371195Z remote: Compressing objects: 36% (62/170)
2020-06-20T18:13:13.6374152Z remote: Compressing objects: 37% (63/170)
2020-06-20T18:13:13.6374312Z remote: Compressing objects: 38% (65/170)
2020-06-20T18:13:13.6376804Z remote: Compressing objects: 39% (67/170)
2020-06-20T18:13:13.6377415Z remote: Compressing objects: 40% (68/170)
2020-06-20T18:13:13.6384468Z remote: Compressing objects: 41% (70/170)
2020-06-20T18:13:13.6384634Z remote: Compressing objects: 42% (72/170)
2020-06-20T18:13:13.6384785Z remote: Compressing objects: 43% (74/170)
2020-06-20T18:13:13.6409977Z remote: Compressing objects: 44% (75/170)
2020-06-20T18:13:13.6410132Z remote: Compressing objects: 45% (77/170)
2020-06-20T18:13:13.6410859Z remote: Compressing objects: 46% (79/170)
2020-06-20T18:13:13.6411011Z remote: Compressing objects: 47% (80/170)
2020-06-20T18:13:13.6411143Z remote: Compressing objects: 48% (82/170)
2020-06-20T18:13:13.6411275Z remote: Compressing objects: 49% (84/170)
2020-06-20T18:13:13.6411405Z remote: Compressing objects: 50% (85/170)
2020-06-20T18:13:13.6411536Z remote: Compressing objects: 51% (87/170)
2020-06-20T18:13:13.6411666Z remote: Compressing objects: 52% (89/170)
2020-06-20T18:13:13.6411779Z remote: Compressing objects: 53% (91/170)
2020-06-20T18:13:13.6419137Z remote: Compressing objects: 54% (92/170)
2020-06-20T18:13:13.6430254Z remote: Compressing objects: 55% (94/170)
2020-06-20T18:13:13.6430416Z remote: Compressing objects: 56% (96/170)
2020-06-20T18:13:13.6433912Z remote: Compressing objects: 57% (97/170)
2020-06-20T18:13:13.6435828Z remote: Compressing objects: 58% (99/170)
2020-06-20T18:13:13.6447740Z remote: Compressing objects: 59% (101/170)
2020-06-20T18:13:13.6455837Z remote: Compressing objects: 60% (102/170)
2020-06-20T18:13:13.6464450Z remote: Compressing objects: 61% (104/170)
2020-06-20T18:13:13.6468348Z remote: Compressing objects: 62% (106/170)
2020-06-20T18:13:13.6468507Z remote: Compressing objects: 63% (108/170)
2020-06-20T18:13:13.6472928Z remote: Compressing objects: 64% (109/170)
2020-06-20T18:13:13.6478899Z remote: Compressing objects: 65% (111/170)
2020-06-20T18:13:13.6479043Z remote: Compressing objects: 66% (113/170)
2020-06-20T18:13:13.6479179Z remote: Compressing objects: 67% (114/170)
2020-06-20T18:13:13.6479315Z remote: Compressing objects: 68% (116/170)
2020-06-20T18:13:13.6483912Z remote: Compressing objects: 69% (118/170)
2020-06-20T18:13:13.6484150Z remote: Compressing objects: 70% (119/170)
2020-06-20T18:13:13.6484291Z remote: Compressing objects: 71% (121/170)
2020-06-20T18:13:13.6488150Z remote: Compressing objects: 72% (123/170)
2020-06-20T18:13:13.6494364Z remote: Compressing objects: 73% (125/170)
2020-06-20T18:13:13.6494514Z remote: Compressing objects: 74% (126/170)
2020-06-20T18:13:13.6494649Z remote: Compressing objects: 75% (128/170)
2020-06-20T18:13:13.6494785Z remote: Compressing objects: 76% (130/170)
2020-06-20T18:13:13.6494916Z remote: Compressing objects: 77% (131/170)
2020-06-20T18:13:13.6495099Z remote: Compressing objects: 78% (133/170)
2020-06-20T18:13:13.6495230Z remote: Compressing objects: 79% (135/170)
2020-06-20T18:13:13.6495361Z remote: Compressing objects: 80% (136/170)
2020-06-20T18:13:13.6495503Z remote: Compressing objects: 81% (138/170)
2020-06-20T18:13:13.6495638Z remote: Compressing objects: 82% (140/170)
2020-06-20T18:13:13.6495770Z remote: Compressing objects: 83% (142/170)
2020-06-20T18:13:13.6495885Z remote: Compressing objects: 84% (143/170)
2020-06-20T18:13:13.6496020Z remote: Compressing objects: 85% (145/170)
2020-06-20T18:13:13.6496150Z remote: Compressing objects: 86% (147/170)
2020-06-20T18:13:13.6496279Z remote: Compressing objects: 87% (148/170)
2020-06-20T18:13:13.6496409Z remote: Compressing objects: 88% (150/170)
2020-06-20T18:13:13.6496537Z remote: Compressing objects: 89% (152/170)
2020-06-20T18:13:13.6496939Z remote: Compressing objects: 90% (153/170)
2020-06-20T18:13:13.6497069Z remote: Compressing objects: 91% (155/170)
2020-06-20T18:13:13.6497201Z remote: Compressing objects: 92% (157/170)
2020-06-20T18:13:13.6497316Z remote: Compressing objects: 93% (159/170)
2020-06-20T18:13:13.6497450Z remote: Compressing objects: 94% (160/170)
2020-06-20T18:13:13.6497581Z remote: Compressing objects: 95% (162/170)
2020-06-20T18:13:13.6497711Z remote: Compressing objects: 96% (164/170)
2020-06-20T18:13:13.6497841Z remote: Compressing objects: 97% (165/170)
2020-06-20T18:13:13.6497976Z remote: Compressing objects: 98% (167/170)
2020-06-20T18:13:13.6498105Z remote: Compressing objects: 99% (169/170)
2020-06-20T18:13:13.6498235Z remote: Compressing objects: 100% (170/170)
2020-06-20T18:13:13.6498371Z remote: Compressing objects: 100% (170/170), done.
2020-06-20T18:13:13.6784987Z Receiving objects: 0% (1/195)
2020-06-20T18:13:13.6785223Z Receiving objects: 1% (2/195)
2020-06-20T18:13:13.6785393Z Receiving objects: 2% (4/195)
2020-06-20T18:13:13.6785558Z Receiving objects: 3% (6/195)
2020-06-20T18:13:13.6785720Z Receiving objects: 4% (8/195)
2020-06-20T18:13:13.6878252Z Receiving objects: 5% (10/195)
2020-06-20T18:13:13.6878493Z Receiving objects: 6% (12/195)
2020-06-20T18:13:13.6878715Z Receiving objects: 7% (14/195)
2020-06-20T18:13:13.6878839Z Receiving objects: 8% (16/195)
2020-06-20T18:13:13.6878963Z Receiving objects: 9% (18/195)
2020-06-20T18:13:13.6883382Z Receiving objects: 10% (20/195)
2020-06-20T18:13:13.6883561Z Receiving objects: 11% (22/195)
2020-06-20T18:13:13.6883688Z Receiving objects: 12% (24/195)
2020-06-20T18:13:13.6883798Z Receiving objects: 13% (26/195)
2020-06-20T18:13:13.6885166Z Receiving objects: 14% (28/195)
2020-06-20T18:13:13.6888737Z Receiving objects: 15% (30/195)
2020-06-20T18:13:13.6888886Z Receiving objects: 16% (32/195)
2020-06-20T18:13:13.6889010Z Receiving objects: 17% (34/195)
2020-06-20T18:13:13.6889135Z Receiving objects: 18% (36/195)
2020-06-20T18:13:13.6889257Z Receiving objects: 19% (38/195)
2020-06-20T18:13:13.6890562Z Receiving objects: 20% (39/195)
2020-06-20T18:13:13.6913951Z Receiving objects: 21% (41/195)
2020-06-20T18:13:13.6914117Z Receiving objects: 22% (43/195)
2020-06-20T18:13:13.6914411Z Receiving objects: 23% (45/195)
2020-06-20T18:13:13.6914541Z Receiving objects: 24% (47/195)
2020-06-20T18:13:13.6914667Z Receiving objects: 25% (49/195)
2020-06-20T18:13:13.6914790Z Receiving objects: 26% (51/195)
2020-06-20T18:13:13.6914982Z Receiving objects: 27% (53/195)
2020-06-20T18:13:13.6915102Z Receiving objects: 28% (55/195)
2020-06-20T18:13:13.6915221Z Receiving objects: 29% (57/195)
2020-06-20T18:13:13.6919127Z Receiving objects: 30% (59/195)
2020-06-20T18:13:13.6920447Z Receiving objects: 31% (61/195)
2020-06-20T18:13:13.6921340Z remote: Total 195 (delta 59), reused 63 (delta 21), pack-reused 0
2020-06-20T18:13:13.6922079Z Receiving objects: 32% (63/195)
2020-06-20T18:13:13.6922212Z Receiving objects: 33% (65/195)
2020-06-20T18:13:13.6922336Z Receiving objects: 34% (67/195)
2020-06-20T18:13:13.6922464Z Receiving objects: 35% (69/195)
2020-06-20T18:13:13.6922587Z Receiving objects: 36% (71/195)
2020-06-20T18:13:13.6922711Z Receiving objects: 37% (73/195)
2020-06-20T18:13:13.6924969Z Receiving objects: 38% (75/195)
2020-06-20T18:13:13.6925098Z Receiving objects: 39% (77/195)
2020-06-20T18:13:13.6925221Z Receiving objects: 40% (78/195)
2020-06-20T18:13:13.6925343Z Receiving objects: 41% (80/195)
2020-06-20T18:13:13.6925697Z Receiving objects: 42% (82/195)
2020-06-20T18:13:13.6925826Z Receiving objects: 43% (84/195)
2020-06-20T18:13:13.6925948Z Receiving objects: 44% (86/195)
2020-06-20T18:13:13.6926073Z Receiving objects: 45% (88/195)
2020-06-20T18:13:13.6927509Z Receiving objects: 46% (90/195)
2020-06-20T18:13:13.6928409Z Receiving objects: 47% (92/195)
2020-06-20T18:13:13.6929668Z Receiving objects: 48% (94/195)
2020-06-20T18:13:13.6931516Z Receiving objects: 49% (96/195)
2020-06-20T18:13:13.6931664Z Receiving objects: 50% (98/195)
2020-06-20T18:13:13.6935822Z Receiving objects: 51% (100/195)
2020-06-20T18:13:13.6935965Z Receiving objects: 52% (102/195)
2020-06-20T18:13:13.6936101Z Receiving objects: 53% (104/195)
2020-06-20T18:13:13.6937866Z Receiving objects: 54% (106/195)
2020-06-20T18:13:13.6938013Z Receiving objects: 55% (108/195)
2020-06-20T18:13:13.6938147Z Receiving objects: 56% (110/195)
2020-06-20T18:13:13.6938282Z Receiving objects: 57% (112/195)
2020-06-20T18:13:13.6938424Z Receiving objects: 58% (114/195)
2020-06-20T18:13:13.6938554Z Receiving objects: 59% (116/195)
2020-06-20T18:13:13.6938685Z Receiving objects: 60% (117/195)
2020-06-20T18:13:13.6938818Z Receiving objects: 61% (119/195)
2020-06-20T18:13:13.6940707Z Receiving objects: 62% (121/195)
2020-06-20T18:13:13.6940830Z Receiving objects: 63% (123/195)
2020-06-20T18:13:13.6940965Z Receiving objects: 64% (125/195)
2020-06-20T18:13:13.6941099Z Receiving objects: 65% (127/195)
2020-06-20T18:13:13.6941230Z Receiving objects: 66% (129/195)
2020-06-20T18:13:13.6941359Z Receiving objects: 67% (131/195)
2020-06-20T18:13:13.6941493Z Receiving objects: 68% (133/195)
2020-06-20T18:13:13.6941622Z Receiving objects: 69% (135/195)
2020-06-20T18:13:13.6941758Z Receiving objects: 70% (137/195)
2020-06-20T18:13:13.6941886Z Receiving objects: 71% (139/195)
2020-06-20T18:13:13.6942014Z Receiving objects: 72% (141/195)
2020-06-20T18:13:13.6942145Z Receiving objects: 73% (143/195)
2020-06-20T18:13:13.6942273Z Receiving objects: 74% (145/195)
2020-06-20T18:13:13.6942406Z Receiving objects: 75% (147/195)
2020-06-20T18:13:13.6942534Z Receiving objects: 76% (149/195)
2020-06-20T18:13:13.6942647Z Receiving objects: 77% (151/195)
2020-06-20T18:13:13.6942776Z Receiving objects: 78% (153/195)
2020-06-20T18:13:13.6942904Z Receiving objects: 79% (155/195)
2020-06-20T18:13:13.6943034Z Receiving objects: 80% (156/195)
2020-06-20T18:13:13.6943161Z Receiving objects: 81% (158/195)
2020-06-20T18:13:13.6943291Z Receiving objects: 82% (160/195)
2020-06-20T18:13:13.6943418Z Receiving objects: 83% (162/195)
2020-06-20T18:13:13.6943546Z Receiving objects: 84% (164/195)
2020-06-20T18:13:13.6943676Z Receiving objects: 85% (166/195)
2020-06-20T18:13:13.6944493Z Receiving objects: 86% (168/195)
2020-06-20T18:13:13.6944765Z Receiving objects: 87% (170/195)
2020-06-20T18:13:13.6944902Z Receiving objects: 88% (172/195)
2020-06-20T18:13:13.6945032Z Receiving objects: 89% (174/195)
2020-06-20T18:13:13.6945163Z Receiving objects: 90% (176/195)
2020-06-20T18:13:13.6945380Z Receiving objects: 91% (178/195)
2020-06-20T18:13:13.6946487Z Receiving objects: 92% (180/195)
2020-06-20T18:13:13.6947420Z Receiving objects: 93% (182/195)
2020-06-20T18:13:13.6948182Z Receiving objects: 94% (184/195)
2020-06-20T18:13:13.6949005Z Receiving objects: 95% (186/195)
2020-06-20T18:13:13.6949858Z Receiving objects: 96% (188/195)
2020-06-20T18:13:13.6952465Z Receiving objects: 97% (190/195)
2020-06-20T18:13:13.6952606Z Receiving objects: 98% (192/195)
2020-06-20T18:13:13.6956069Z Receiving objects: 99% (194/195)
2020-06-20T18:13:13.6956264Z Receiving objects: 100% (195/195)
2020-06-20T18:13:13.6956568Z Receiving objects: 100% (195/195), 214.68 KiB | 11.93 MiB/s, done.
2020-06-20T18:13:13.6960335Z Resolving deltas: 0% (0/59)
2020-06-20T18:13:13.6962510Z Resolving deltas: 1% (1/59)
2020-06-20T18:13:13.6964470Z Resolving deltas: 5% (3/59)
2020-06-20T18:13:13.6965321Z Resolving deltas: 11% (7/59)
2020-06-20T18:13:13.6971567Z Resolving deltas: 13% (8/59)
2020-06-20T18:13:13.6971935Z Resolving deltas: 28% (17/59)
2020-06-20T18:13:13.6972542Z Resolving deltas: 45% (27/59)
2020-06-20T18:13:13.6974211Z Resolving deltas: 49% (29/59)
2020-06-20T18:13:13.6976426Z Resolving deltas: 52% (31/59)
2020-06-20T18:13:13.6978975Z Resolving deltas: 57% (34/59)
2020-06-20T18:13:13.6982724Z Resolving deltas: 61% (36/59)
2020-06-20T18:13:13.6984382Z Resolving deltas: 79% (47/59)
2020-06-20T18:13:13.6986578Z Resolving deltas: 83% (49/59)
2020-06-20T18:13:13.6988025Z Resolving deltas: 86% (51/59)
2020-06-20T18:13:13.6989620Z Resolving deltas: 88% (52/59)
2020-06-20T18:13:13.6991139Z Resolving deltas: 89% (53/59)
2020-06-20T18:13:13.6992475Z Resolving deltas: 91% (54/59)
2020-06-20T18:13:13.6994960Z Resolving deltas: 93% (55/59)
2020-06-20T18:13:13.6996509Z Resolving deltas: 96% (57/59)
2020-06-20T18:13:13.7000016Z Resolving deltas: 100% (59/59)
2020-06-20T18:13:13.7000452Z Resolving deltas: 100% (59/59), done.
2020-06-20T18:13:13.7402577Z From https://github.com/polterguy/anarq.frontend
2020-06-20T18:13:13.7405670Z * [new ref] f3b5ec01c51e89f1e63f9e0cc17cc996a10ea8c7 -> origin/master
2020-06-20T18:13:13.7433612Z ##[endgroup]
2020-06-20T18:13:13.7434329Z ##[group]Determining the checkout info
2020-06-20T18:13:13.7435551Z ##[endgroup]
2020-06-20T18:13:13.7436055Z ##[group]Checking out the ref
2020-06-20T18:13:13.7440248Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2020-06-20T18:13:13.7857077Z Reset branch 'master'
2020-06-20T18:13:13.7858053Z Branch 'master' set up to track remote branch 'master' from 'origin'.
2020-06-20T18:13:13.7862468Z ##[endgroup]
2020-06-20T18:13:13.7863048Z ##[group]Setting up auth for fetching submodules
2020-06-20T18:13:13.7882031Z Temporarily overriding HOME='/home/runner/work/_temp/061e4750-9098-4a53-ad09-ad40f3b3af20' before making global git config changes
2020-06-20T18:13:13.7888463Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic

2020-06-20T18:13:13.7938678Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf
2020-06-20T18:13:13.7997691Z [command]/usr/bin/git config --global url.https://github.com/.insteadOf [email protected]:
2020-06-20T18:13:13.8036493Z ##[endgroup]
2020-06-20T18:13:13.8036959Z ##[group]Fetching submodules
2020-06-20T18:13:13.8042988Z [command]/usr/bin/git submodule sync
2020-06-20T18:13:13.8315974Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --depth=1
2020-06-20T18:13:13.8597834Z [command]/usr/bin/git submodule foreach git config --local gc.auto 0
2020-06-20T18:13:13.8969631Z ##[endgroup]
2020-06-20T18:13:13.8974381Z ##[group]Persisting credentials for submodules
2020-06-20T18:13:13.8975633Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'url.https\:\/\/github.com\/.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :
2020-06-20T18:13:13.9227673Z [command]/usr/bin/git submodule foreach git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic
' && git config --local --show-origin --name-only --get-regexp remote.origin.url
2020-06-20T18:13:13.9508357Z [command]/usr/bin/git submodule foreach git config --local 'url.https://github.com/.insteadOf' '[email protected]:'
2020-06-20T18:13:13.9784274Z ##[endgroup]
2020-06-20T18:13:13.9826054Z [command]/usr/bin/git log -1
2020-06-20T18:13:13.9863824Z commit f3b5ec01c51e89f1e63f9e0cc17cc996a10ea8c7
2020-06-20T18:13:13.9864314Z Author: Azure Static Web Apps opensource@microsoft.com
2020-06-20T18:13:13.9864660Z Date: Sat Jun 20 21:12:23 2020 +0300
2020-06-20T18:13:13.9864910Z
2020-06-20T18:13:13.9865230Z ci: add Azure Static Web Apps workflow file
2020-06-20T18:13:14.0038932Z ##[group]Run Azure/[email protected]
2020-06-20T18:13:14.0039089Z with:
2020-06-20T18:13:14.0039676Z azure_static_web_apps_api_token:

2020-06-20T18:13:14.0040181Z repo_token: *

2020-06-20T18:13:14.0040323Z action: upload
2020-06-20T18:13:14.0040450Z app_location: /
2020-06-20T18:13:14.0040580Z api_location: api
2020-06-20T18:13:14.0040689Z app_artifact_location: dist/
2020-06-20T18:13:14.0040817Z ##[endgroup]
2020-06-20T18:13:14.0064861Z ##[command]/usr/bin/docker run --name c27d316519a35d48d34fd99ecac2b54114991b_907e86 --label c27d31 --workdir /github/workspace --rm -e INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN -e INPUT_REPO_TOKEN -e INPUT_ACTION -e INPUT_APP_LOCATION -e INPUT_API_LOCATION -e INPUT_APP_ARTIFACT_LOCATION -e INPUT_API_BUILD_COMMAND -e INPUT_APP_BUILD_COMMAND -e INPUT_ROUTES_LOCATION -e HOME -e GITHUB_JOB -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_REPOSITORY_OWNER -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_ACTOR -e GITHUB_WORKFLOW -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GITHUB_EVENT_NAME -e GITHUB_API_URL -e GITHUB_WORKSPACE -e GITHUB_ACTION -e GITHUB_EVENT_PATH -e RUNNER_OS -e RUNNER_TOOL_CACHE -e RUNNER_TEMP -e RUNNER_WORKSPACE -e ACTIONS_RUNTIME_URL -e ACTIONS_RUNTIME_TOKEN -e ACTIONS_CACHE_URL -e GITHUB_ACTIONS=true -e CI=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/anarq.frontend/anarq.frontend":"/github/workspace" c27d31:6519a35d48d34fd99ecac2b54114991b
2020-06-20T18:13:14.6477483Z DeploymentId: 2e8f87c4-d926-4f9a-a667-b85e43a2ba56
2020-06-20T18:13:14.6478166Z 
2020-06-20T18:13:14.7475751Z App Directory Location: '/' was found.
2020-06-20T18:13:14.7480470Z [WARNING] Api Directory Location: 'api' could not be found. Azure Functions will not be created.
2020-06-20T18:13:15.9942731Z Starting to build app with Oryx
2020-06-20T18:13:15.9946264Z Azure Static Web Apps utilizes Oryx to build both static applications and Azure Functions. You can find more details on Oryx here: https://github.com/microsoft/Oryx
2020-06-20T18:13:15.9947972Z ---Oryx build logs---
2020-06-20T18:13:15.9948310Z 
2020-06-20T18:13:15.9948555Z 
2020-06-20T18:13:16.6347676Z Build orchestrated by Microsoft Oryx, https://github.com/Microsoft/Oryx
2020-06-20T18:13:16.6348119Z You can report issues at https://github.com/Microsoft/Oryx/issues
2020-06-20T18:13:16.6351713Z 
2020-06-20T18:13:16.6362947Z Oryx Version : 0.2.20200526.1, Commit: 400c4f0c491327b894c3bed2cfbe68376e17eabd, ReleaseTagName: 20200526.1
2020-06-20T18:13:16.6367079Z Build Operation ID: |prDP0hUV5iU=.1eb8119d_
2020-06-20T18:13:16.6370724Z Repository Commit : f3b5ec01c51e89f1e63f9e0cc17cc996a10ea8c7
2020-06-20T18:13:16.6374103Z 
2020-06-20T18:13:17.7676796Z Using intermediate directory '/bin/staticsites/ss-oryx/app-int'.
2020-06-20T18:13:17.7696834Z 
2020-06-20T18:13:17.7700511Z Intermediate directory doesn't exist, creating it...'
2020-06-20T18:13:17.7704095Z 
2020-06-20T18:13:17.7707376Z Copying files to the intermediate directory...
2020-06-20T18:13:17.7926240Z Done in 0 sec(s).
2020-06-20T18:13:17.7931084Z 
2020-06-20T18:13:17.7931448Z Source directory : /bin/staticsites/ss-oryx/app-int
2020-06-20T18:13:17.7931853Z Destination directory: /bin/staticsites/ss-oryx/app
2020-06-20T18:13:17.7932137Z 
2020-06-20T18:13:17.8153600Z 
2020-06-20T18:13:17.8153924Z Using Node version:
2020-06-20T18:13:17.8186255Z v12.16.3
2020-06-20T18:13:17.8195410Z 
2020-06-20T18:13:17.8198296Z Using Npm version:
2020-06-20T18:13:17.9629733Z 6.14.4
2020-06-20T18:13:17.9763802Z 
2020-06-20T18:13:17.9764498Z Installing production dependencies in '/bin/staticsites/ss-oryx/app-int/__oryx_prod_node_modules'...
2020-06-20T18:13:17.9764820Z 
2020-06-20T18:13:17.9765136Z Running 'npm install --unsafe-perm --production'...
2020-06-20T18:13:17.9765608Z 
2020-06-20T18:13:26.0300820Z added 76 packages from 974 contributors and audited 1439 packages in 7.701s
2020-06-20T18:13:26.5992350Z found 3 low severity vulnerabilities
2020-06-20T18:13:26.5998030Z  run npm audit fix to fix them, or npm audit for details
2020-06-20T18:13:26.7312771Z 
2020-06-20T18:13:26.7323131Z Copying production dependencies from '/bin/staticsites/ss-oryx/app-int/__oryx_prod_node_modules' to '/bin/staticsites/ss-oryx/app-int/node_modules'...
2020-06-20T18:13:28.2482452Z Done in 2 sec(s).
2020-06-20T18:13:28.2565027Z 
2020-06-20T18:13:28.2565880Z Running 'npm install --unsafe-perm'...
2020-06-20T18:13:28.2566180Z 
2020-06-20T18:13:52.0987879Z 
2020-06-20T18:13:52.0989719Z > [email protected] postinstall /bin/staticsites/ss-oryx/app-int/node_modules/core-js
2020-06-20T18:13:52.0991021Z > node -e "try{require('./postinstall')}catch(e){}"
2020-06-20T18:13:52.0994412Z 
2020-06-20T18:13:52.3158969Z 
2020-06-20T18:13:52.3164771Z > [email protected] postinstall /bin/staticsites/ss-oryx/app-int/node_modules/karma/node_modules/core-js
2020-06-20T18:13:52.3169710Z > node -e "try{require('./postinstall')}catch(e){}"
2020-06-20T18:13:52.3174415Z 
2020-06-20T18:13:52.5834002Z 
2020-06-20T18:13:52.5834560Z > @angular/[email protected] postinstall /bin/staticsites/ss-oryx/app-int/node_modules/@angular/cli
2020-06-20T18:13:52.5836367Z > node ./bin/postinstall/script.js
2020-06-20T18:13:52.5838289Z 
2020-06-20T18:13:53.9297689Z npm WARN [email protected] requires a peer of @angular/cdk@^7.0.0 but none is installed. You must install peer dependencies yourself.
2020-06-20T18:13:53.9303282Z npm WARN [email protected] requires a peer of @angular/animations@^6.0.0 but none is installed. You must install peer dependencies yourself.
2020-06-20T18:13:53.9307328Z npm WARN [email protected] requires a peer of @angular/common@^6.0.0 but none is installed. You must install peer dependencies yourself.
2020-06-20T18:13:53.9311165Z npm WARN [email protected] requires a peer of @angular/core@^6.0.0 but none is installed. You must install peer dependencies yourself.
2020-06-20T18:13:53.9314349Z npm WARN [email protected] requires a peer of @angular/forms@^6.0.0 but none is installed. You must install peer dependencies yourself.
2020-06-20T18:13:53.9317145Z npm WARN [email protected] requires a peer of ng-pick-datetime@^6.0.16 but none is installed. You must install peer dependencies yourself.
2020-06-20T18:13:53.9320079Z npm WARN [email protected] requires a peer of @angular/core@^6.0.0 || ^7.0.0 || ^8.0.0 but none is installed. You must install peer dependencies yourself.
2020-06-20T18:13:53.9325296Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/webpack-dev-server/node_modules/fsevents):
2020-06-20T18:13:53.9325929Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2020-06-20T18:13:53.9326587Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack-chokidar2/node_modules/fsevents):
2020-06-20T18:13:53.9327050Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2020-06-20T18:13:53.9327521Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/karma/node_modules/fsevents):
2020-06-20T18:13:53.9328069Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2020-06-20T18:13:53.9328472Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
2020-06-20T18:13:53.9328924Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2020-06-20T18:13:53.9329230Z 
2020-06-20T18:13:53.9373505Z added 1353 packages from 1099 contributors and audited 1439 packages in 25.337s
2020-06-20T18:13:54.6911136Z 
2020-06-20T18:13:54.6926831Z 37 packages are looking for funding
2020-06-20T18:13:54.6930142Z  run npm fund for details
2020-06-20T18:13:54.6934225Z 
2020-06-20T18:13:54.6939192Z found 3 low severity vulnerabilities
2020-06-20T18:13:54.7001950Z  run npm audit fix to fix them, or npm audit for details
2020-06-20T18:13:54.8637516Z 
2020-06-20T18:13:54.8648212Z Running 'npm run build'...
2020-06-20T18:13:54.8648724Z 
2020-06-20T18:13:55.0663764Z 
2020-06-20T18:13:55.0664386Z > [email protected] build /bin/staticsites/ss-oryx/app-int
2020-06-20T18:13:55.0664701Z > ng build
2020-06-20T18:13:55.0665022Z 
2020-06-20T18:14:01.5548818Z 
2020-06-20T18:14:01.5704086Z Compiling @angular/core : es2015 as esm2015
2020-06-20T18:14:05.5042828Z 
2020-06-20T18:14:05.5046770Z Compiling @angular/common : es2015 as esm2015
2020-06-20T18:14:06.7784872Z 
2020-06-20T18:14:06.7785299Z Compiling @angular/platform-browser : es2015 as esm2015
2020-06-20T18:14:08.0456536Z 
2020-06-20T18:14:08.0457501Z Compiling @angular/platform-browser-dynamic : es2015 as esm2015
2020-06-20T18:14:10.9303017Z 
2020-06-20T18:14:10.9303418Z Compiling @angular/forms : es2015 as esm2015
2020-06-20T18:14:13.0723697Z 
2020-06-20T18:14:13.0725028Z Compiling @angular/common/http : es2015 as esm2015
2020-06-20T18:14:15.5817049Z 
2020-06-20T18:14:15.5818392Z Compiling @angular/animations : es2015 as esm2015
2020-06-20T18:14:16.1996000Z 
2020-06-20T18:14:16.1997112Z Compiling @angular/animations/browser : es2015 as esm2015
2020-06-20T18:14:17.3030518Z 
2020-06-20T18:14:17.3036788Z Compiling @angular/platform-browser/animations : es2015 as esm2015
2020-06-20T18:14:36.5859335Z 
2020-06-20T18:14:36.5866022Z Compiling @angular/cdk/keycodes : es2015 as esm2015
2020-06-20T18:14:37.1935185Z 
2020-06-20T18:14:37.1939597Z Compiling @angular/cdk/platform : es2015 as esm2015
2020-06-20T18:14:38.0233353Z 
2020-06-20T18:14:38.0237847Z Compiling @angular/cdk/coercion : es2015 as esm2015
2020-06-20T18:14:38.9327931Z 
2020-06-20T18:14:38.9331656Z Compiling @angular/cdk/observers : es2015 as esm2015
2020-06-20T18:14:40.0681398Z 
2020-06-20T18:14:40.0681981Z Compiling @angular/cdk/a11y : es2015 as esm2015
2020-06-20T18:14:40.9445626Z 
2020-06-20T18:14:40.9453772Z Compiling @angular/cdk/bidi : es2015 as esm2015
2020-06-20T18:14:41.7255269Z 
2020-06-20T18:14:41.7259685Z Compiling @angular/cdk : es2015 as esm2015
2020-06-20T18:14:42.8125023Z 
2020-06-20T18:14:42.8131550Z Compiling @angular/material/core : es2015 as esm2015
2020-06-20T18:14:43.7340191Z 
2020-06-20T18:14:43.7345649Z Compiling @angular/cdk/collections : es2015 as esm2015
2020-06-20T18:14:44.7032897Z 
2020-06-20T18:14:44.7038939Z Compiling @angular/cdk/scrolling : es2015 as esm2015
2020-06-20T18:14:45.5683298Z 
2020-06-20T18:14:45.5689063Z Compiling @angular/cdk/portal : es2015 as esm2015
2020-06-20T18:14:46.6743671Z 
2020-06-20T18:14:46.6749679Z Compiling @angular/cdk/overlay : es2015 as esm2015
2020-06-20T18:14:47.9536091Z 
2020-06-20T18:14:47.9542699Z Compiling @angular/material/form-field : es2015 as esm2015
2020-06-20T18:14:49.4431458Z 
2020-06-20T18:14:49.4431820Z Compiling @angular/material/autocomplete : es2015 as esm2015
2020-06-20T18:14:50.5246818Z 
2020-06-20T18:14:50.5251680Z Compiling @angular/material/badge : es2015 as esm2015
2020-06-20T18:14:51.4115093Z 
2020-06-20T18:14:51.4115477Z Compiling @angular/cdk/layout : es2015 as esm2015
2020-06-20T18:14:52.5905192Z 
2020-06-20T18:14:52.5906364Z Compiling @angular/material/bottom-sheet : es2015 as esm2015
2020-06-20T18:14:53.6718632Z 
2020-06-20T18:14:53.6719076Z Compiling @angular/material/button : es2015 as esm2015
2020-06-20T18:14:54.7310895Z 
2020-06-20T18:14:54.7311380Z Compiling @angular/material/button-toggle : es2015 as esm2015
2020-06-20T18:14:55.6103304Z 
2020-06-20T18:14:55.6107538Z Compiling @angular/material/card : es2015 as esm2015
2020-06-20T18:14:56.6960860Z 
2020-06-20T18:14:56.6965289Z Compiling @angular/material/checkbox : es2015 as esm2015
2020-06-20T18:14:57.8866362Z 
2020-06-20T18:14:57.8870384Z Compiling @angular/material/chips : es2015 as esm2015
2020-06-20T18:14:59.1176181Z 
2020-06-20T18:14:59.1176725Z Compiling @angular/material/dialog : es2015 as esm2015
2020-06-20T18:15:00.0754092Z 
2020-06-20T18:15:00.0754640Z Compiling @angular/cdk/text-field : es2015 as esm2015
2020-06-20T18:15:01.2176196Z 
2020-06-20T18:15:01.2176578Z Compiling @angular/material/input : es2015 as esm2015
2020-06-20T18:15:02.6367545Z 
2020-06-20T18:15:02.6367957Z Compiling @angular/material/datepicker : es2015 as esm2015
2020-06-20T18:15:03.7432677Z 
2020-06-20T18:15:03.7437083Z Compiling @angular/material/divider : es2015 as esm2015
2020-06-20T18:15:04.5536841Z 
2020-06-20T18:15:04.5537246Z Compiling @angular/cdk/accordion : es2015 as esm2015
2020-06-20T18:15:05.5798539Z 
2020-06-20T18:15:05.5803763Z Compiling @angular/material/expansion : es2015 as esm2015
2020-06-20T18:15:06.6444114Z 
2020-06-20T18:15:06.6445050Z Compiling @angular/material/grid-list : es2015 as esm2015
2020-06-20T18:15:07.8620102Z 
2020-06-20T18:15:07.8620482Z Compiling @angular/material/icon : es2015 as esm2015
2020-06-20T18:15:09.0658558Z 
2020-06-20T18:15:09.0662673Z Compiling @angular/material/list : es2015 as esm2015
2020-06-20T18:15:10.4410898Z 
2020-06-20T18:15:10.4411327Z Compiling @angular/material/menu : es2015 as esm2015
2020-06-20T18:15:11.8028922Z 
2020-06-20T18:15:11.8029333Z Compiling @angular/material/select : es2015 as esm2015
2020-06-20T18:15:13.5942150Z 
2020-06-20T18:15:13.5948421Z Compiling @angular/material/tooltip : es2015 as esm2015
2020-06-20T18:15:14.4609559Z 
2020-06-20T18:15:14.4650519Z Compiling @angular/material/paginator : es2015 as esm2015
2020-06-20T18:15:15.6584425Z 
2020-06-20T18:15:15.6589524Z Compiling @angular/material/progress-bar : es2015 as esm2015
2020-06-20T18:15:16.6959510Z 
2020-06-20T18:15:16.6960201Z Compiling @angular/material/progress-spinner : es2015 as esm2015
2020-06-20T18:15:17.7673351Z 
2020-06-20T18:15:17.7678352Z Compiling @angular/material/radio : es2015 as esm2015
2020-06-20T18:15:18.9392799Z 
2020-06-20T18:15:18.9393584Z Compiling @angular/material/sidenav : es2015 as esm2015
2020-06-20T18:15:20.0527586Z 
2020-06-20T18:15:20.0529987Z Compiling @angular/material/slide-toggle : es2015 as esm2015
2020-06-20T18:15:21.1456611Z 
2020-06-20T18:15:21.1460584Z Compiling @angular/material/slider : es2015 as esm2015
2020-06-20T18:15:22.5317636Z 
2020-06-20T18:15:22.5322529Z Compiling @angular/material/snack-bar : es2015 as esm2015
2020-06-20T18:15:23.6067862Z 
2020-06-20T18:15:23.6072213Z Compiling @angular/material/sort : es2015 as esm2015
2020-06-20T18:15:24.5901250Z 
2020-06-20T18:15:24.5901654Z Compiling @angular/cdk/stepper : es2015 as esm2015
2020-06-20T18:15:25.7902899Z 
2020-06-20T18:15:25.7903516Z Compiling @angular/material/stepper : es2015 as esm2015
2020-06-20T18:15:26.8587229Z 
2020-06-20T18:15:26.8591164Z Compiling @angular/cdk/table : es2015 as esm2015
2020-06-20T18:15:28.2173998Z 
2020-06-20T18:15:28.2177907Z Compiling @angular/material/table : es2015 as esm2015
2020-06-20T18:15:29.5009553Z 
2020-06-20T18:15:29.5013956Z Compiling @angular/material/tabs : es2015 as esm2015
2020-06-20T18:15:30.7964409Z 
2020-06-20T18:15:30.7968183Z Compiling @angular/material/toolbar : es2015 as esm2015
2020-06-20T18:15:31.8137753Z 
2020-06-20T18:15:31.8142351Z Compiling @angular/cdk/tree : es2015 as esm2015
2020-06-20T18:15:32.9851543Z 
2020-06-20T18:15:32.9851997Z Compiling @angular/material/tree : es2015 as esm2015
2020-06-20T18:15:34.7892469Z 
2020-06-20T18:15:34.7898193Z Compiling @angular/material : es2015 as esm2015
2020-06-20T18:15:37.5277920Z 
2020-06-20T18:15:37.5278656Z Compiling @angular/material-moment-adapter : es2015 as esm2015
2020-06-20T18:15:40.5593411Z 
2020-06-20T18:15:40.5594474Z Compiling ng-pick-datetime : module as esm5
2020-06-20T18:15:43.5165682Z 
2020-06-20T18:15:43.5169454Z Compiling ng-pick-datetime-moment : module as esm5
2020-06-20T18:15:45.9625653Z 
2020-06-20T18:15:45.9625986Z Compiling ng2-charts : es2015 as esm2015
2020-06-20T18:15:47.9510128Z 
2020-06-20T18:15:47.9510660Z Compiling @auth0/angular-jwt : module as esm5
2020-06-20T18:15:49.8913100Z 
2020-06-20T18:15:49.8913741Z Compiling angularx-qrcode : es2015 as esm2015
2020-06-20T18:15:51.9234227Z 
2020-06-20T18:15:51.9234626Z Compiling @ctrl/ngx-codemirror : es2015 as esm2015
2020-06-20T18:15:53.7672642Z 
2020-06-20T18:15:53.7673708Z Compiling ng-recaptcha : es2015 as esm2015
2020-06-20T18:15:57.2876759Z 
2020-06-20T18:15:57.2884546Z Compiling @angular/router : es2015 as esm2015
2020-06-20T18:16:15.9404216Z Generating ES5 bundles for differential loading...
2020-06-20T18:17:16.2424682Z ES5 bundle generation complete.
2020-06-20T18:17:16.3304889Z 
2020-06-20T18:17:16.3305409Z chunk {runtime} runtime-es2015.js, runtime-es2015.js.map (runtime) 6.16 kB [entry] [rendered]
2020-06-20T18:17:16.3305768Z chunk {runtime} runtime-es5.js, runtime-es5.js.map (runtime) 6.16 kB [entry] [rendered]
2020-06-20T18:17:16.3306112Z chunk {main} main-es2015.js, main-es2015.js.map (main) 777 kB [initial] [rendered]
2020-06-20T18:17:16.3306463Z chunk {main} main-es5.js, main-es5.js.map (main) 859 kB [initial] [rendered]
2020-06-20T18:17:16.3306882Z chunk {polyfills} polyfills-es2015.js, polyfills-es2015.js.map (polyfills) 351 kB [initial] [rendered]
2020-06-20T18:17:16.3307240Z chunk {polyfills-es5} polyfills-es5.js, polyfills-es5.js.map (polyfills-es5) 798 kB [initial] [rendered]
2020-06-20T18:17:16.3307799Z chunk {styles} styles-es2015.js, styles-es2015.js.map (styles) 291 kB [initial] [rendered]
2020-06-20T18:17:16.3317248Z chunk {styles} styles-es5.js, styles-es5.js.map (styles) 292 kB [initial] [rendered]
2020-06-20T18:17:16.3318018Z chunk {vendor} vendor-es2015.js, vendor-es2015.js.map (vendor) 11.7 MB [initial] [rendered]
2020-06-20T18:17:16.3318697Z chunk {vendor} vendor-es5.js, vendor-es5.js.map (vendor) 13.5 MB [initial] [rendered]
2020-06-20T18:17:16.3397727Z 
2020-06-20T18:17:16.3398463Z WARNING in Entry point 'ng-pick-datetime-moment' contains deep imports into '/bin/staticsites/ss-oryx/app-int/node_modules/moment/moment'. This is probably not a problem, but may cause the compilation of entry points to be out of order.
2020-06-20T18:17:16.3398770Z 
2020-06-20T18:17:16.3399147Z WARNING in /bin/staticsites/ss-oryx/app-int/src/environments/environment.prod.ts is part of the TypeScript compilation but it's unused.
2020-06-20T18:17:16.3399496Z Add only entry points to the 'files' or 'include' properties in your tsconfig.
2020-06-20T18:17:16.3404231Z Date: 2020-06-20T18:17:16.328Z - Hash: 9811defe46143b080d54 - Time: 198580ms
2020-06-20T18:17:16.4154366Z 
2020-06-20T18:17:16.4154863Z Copy '/bin/staticsites/ss-oryx/app-int/node_modules' with all dependencies to '/bin/staticsites/ss-oryx/app-int/__oryx_all_node_modules'...
2020-06-20T18:17:25.1900445Z 
2020-06-20T18:17:25.1907686Z Copying production dependencies from '/bin/staticsites/ss-oryx/app-int/__oryx_prod_node_modules/node_modules' to '/bin/staticsites/ss-oryx/app-int/node_modules'...
2020-06-20T18:17:28.8739898Z 
2020-06-20T18:17:28.8748878Z Copying files to destination directory '/bin/staticsites/ss-oryx/app'...
2020-06-20T18:17:31.8968639Z Done in 3 sec(s).
2020-06-20T18:17:31.9231860Z 
2020-06-20T18:17:31.9232778Z Removing existing manifest file
2020-06-20T18:17:31.9694115Z Creating a manifest file...
2020-06-20T18:17:31.9695496Z Manifest file created.
2020-06-20T18:17:31.9696349Z 
2020-06-20T18:17:31.9698376Z Done in 254 sec(s).
2020-06-20T18:17:33.5557763Z 
2020-06-20T18:17:33.5558354Z 
2020-06-20T18:17:33.5558757Z ---End of Oryx build logs---
2020-06-20T18:17:33.5560813Z Finished building app with Oryx
2020-06-20T18:17:33.5594421Z Failed to find a default file in the app artifacts folder (dist/). Valid default files: index.html,Index.html.
2020-06-20T18:17:33.5595294Z If your application contains purely static content, please verify that the variable 'app_location' in your workflow file (located in .github/workflows) points to the root of your application.
2020-06-20T18:17:33.5597147Z If your application requires build steps, please validate that a default file exists in the build output directory.
2020-06-20T18:17:33.5597857Z 
2020-06-20T18:17:33.5598316Z Exiting
2020-06-20T18:17:43.9221065Z Post job cleanup.
2020-06-20T18:17:44.0277216Z [command]/usr/bin/git version
2020-06-20T18:17:44.0349510Z git version 2.26.2
2020-06-20T18:17:44.0387107Z [command]/usr/bin/git config --local --name-only --get-regexp core.sshCommand
2020-06-20T18:17:44.0431267Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2020-06-20T18:17:44.0697051Z [command]/usr/bin/git config --local --name-only --get-regexp http.https\:\/\/github.com\/.extraheader
2020-06-20T18:17:44.0745214Z http.https://github.com/.extraheader
2020-06-20T18:17:44.0747656Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2020-06-20T18:17:44.0778789Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http.https\:\/\/github.com\/.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2020-06-20T18:17:44.1122893Z Cleaning up orphan processes

Thank you. So most angular apps will actually put the built application in "dist/

Hallelujah man :)

10 points to you. VS Code was playing _"tricks"_ on me. As I expanded the _"dist/"_ folder, it expanded into my app's name folder too - Works like a charm now :)

Ask your boss for a raise man, and let him know I think you deserve it ... ^_^

Psst

Of course, I still need to configure the DNS, and connect to my API, but that's not your problem :)

The app_artifact_location now renamed output_location (same thing) took me a few attempts to resolve but I had other issues with the node build before that.

The default for VSCode Azure Static Web Apps extension from what I can see writes the actions yml path output_location: "/dist" this for me didn't work and failed the deploy with the below error:

---End of Oryx build logs---
The app build failed to produce artifact folder: '/dist'. Please ensure this property is configured correctly in your workflow file.

The fix for me was to remove the forward slash / completely output_location: "dist"

Was this page helpful?
0 / 5 - 0 ratings

Related issues

stephtr picture stephtr  路  4Comments

stephtr picture stephtr  路  5Comments

empz picture empz  路  4Comments

thomastvedt picture thomastvedt  路  5Comments

adamjcooper picture adamjcooper  路  6Comments