Post-processing in netlify.toml with GitHub Actions

For my site (Netlify site name agitated-leavitt-d77a5d, using custom domain brycewray.com), I have begun using the CI/CD features in GitHub Actions to reduce build time, as suggested in various articles and Community posts. Does deploying in this fashion ignore the netlify.toml settings? Here’s why I ask…

Everything seems to go fine, except that I’m not seeing post-processing occurring even when that’s set in netlify.toml as per the instructions in File-based configuration | Netlify Docse.g., my multiple JS files aren’t getting bundled as I would expect. I did try adding netlify-config-path: "./netlify.toml" to my ./github/workflows/netlify-deploy.yml file for GitHub Actions (based on the example in Netlify Actions · Actions · GitHub Marketplace · GitHub and Does not respect netlify.toml? · Issue #168 · nwtgck/actions-netlify · GitHub) and the log indicates it was “seen”…

Wed, 24 Jun 2020 12:05:19 GMT  ✔ Deploy is live!
Wed, 24 Jun 2020 12:05:19 GMT  Deploy path:        /github/workspace/_site
Wed, 24 Jun 2020 12:05:19 GMT  Configuration path: /github/workspace/netlify.toml
Wed, 24 Jun 2020 12:05:19 GMT  Deploying to main site URL...

but the results were the same. Here are my netlify.toml contents as of last push to Netlify, and thanks in advance for any help I might receive on this:

[build]
  publish = "_site"
  command = "npm run build"

[build.environment]
  TZ = "America/Chicago"

[build.processing]
  skip_processing = false

[build.processing.css]
  bundle = true
  minify = true

[build.processing.js]
  bundle = true
  minify = true

[build.processing.html]
  pretty_urls = true

[build.processing.images]
  compress = true

Hey @brycewray,

Thanks for writing in! I won’t write War & Peace on the matter but, in short, there’s reasons why we may not optimise every asset on your site. We have a Support Guide on the topic which you can find here.

If your use case doesn’t fall under one of the caveats, do let us know. At this point, a deploy log and/or site name would be super handy!

1 Like

@Scott Thanks. When I was doing deploys through the Netlify UI (i.e., with the GitHub repo linked) and had pre-processing set there, the assets always were optimized as wanted. I just wondered whether there’s a reason why it won’t work with this non-Netlify-UI method and netlify.toml, even though I apparently have everything set properly.

Site name, as mentioned in my earlier post above, is agitated-leavitt-d77a5d.
Deploy log is too long to put here (exceeds the editor limits). Let me know how I can provide it to you.

@Scott Think I’ll provide you that deploy log in pieces, since there appears to be no way to provide an attachment. Here’s Part I:

2020-06-24T12:26:37.9067618Z ##[section]Starting: Request a runner to run this job
2020-06-24T12:26:38.6370656Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2020-06-24T12:26:38.6370691Z 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-24T12:26:38.6370714Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2020-06-24T12:26:38.8628036Z ##[section]Finishing: Request a runner to run this job
2020-06-24T12:26:46.9016856Z Current runner version: '2.169.1'
2020-06-24T12:26:46.9051599Z ##[group]Operating System
2020-06-24T12:26:46.9052447Z Ubuntu
2020-06-24T12:26:46.9052724Z 18.04.4
2020-06-24T12:26:46.9052963Z LTS
2020-06-24T12:26:46.9053196Z ##[endgroup]
2020-06-24T12:26:46.9053444Z ##[group]Virtual Environment
2020-06-24T12:26:46.9053767Z Environment: ubuntu-18.04
2020-06-24T12:26:46.9054017Z Version: 20200621.1
2020-06-24T12:26:46.9054379Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20200621.1/images/linux/Ubuntu1804-README.md
2020-06-24T12:26:46.9054687Z ##[endgroup]
2020-06-24T12:26:46.9055863Z Prepare workflow directory
2020-06-24T12:26:46.9410976Z Prepare all required actions
2020-06-24T12:26:46.9423859Z Download action repository 'actions/checkout@v1'
2020-06-24T12:26:49.7463565Z Download action repository 'actions/cache@v1'
2020-06-24T12:26:51.7224607Z Download action repository 'actions/setup-node@v1'
2020-06-24T12:26:54.0058521Z Download action repository 'netlify/actions@master'
2020-06-24T12:26:55.5046627Z Build container for action use: '/home/runner/work/_actions/netlify/actions/master/cli/Dockerfile'.
2020-06-24T12:26:55.5120501Z ##[command]/usr/bin/docker build -t c27d31:5f0cb342a3a64a2ca816b1fef41778f2 "/home/runner/work/_actions/netlify/actions/master/cli"
2020-06-24T12:26:56.7286955Z Sending build context to Docker daemon   5.12kB
2020-06-24T12:26:56.7289042Z 
2020-06-24T12:26:56.7289848Z Step 1/12 : FROM node:12-alpine
2020-06-24T12:26:56.7290327Z  ---> 06a4a7b5263d
2020-06-24T12:26:56.7291203Z Step 2/12 : LABEL version="1.0.1"
2020-06-24T12:26:56.7291942Z  ---> Running in 5440d93f75d7
2020-06-24T12:27:03.4956897Z Removing intermediate container 5440d93f75d7
2020-06-24T12:27:03.4962913Z  ---> 4f320669a8de
2020-06-24T12:27:03.4972995Z Step 3/12 : LABEL repository="http://github.com/netlify/actions"
2020-06-24T12:27:03.5163859Z  ---> Running in d72bd83dd8a8
2020-06-24T12:27:04.0193382Z Removing intermediate container d72bd83dd8a8
2020-06-24T12:27:04.0193850Z  ---> e893b42631c7
2020-06-24T12:27:04.0241684Z Step 4/12 : LABEL homepage="http://github.com/netlify/actions/netlify"
2020-06-24T12:27:04.0421993Z  ---> Running in ec8d10486824
2020-06-24T12:27:05.0177346Z Removing intermediate container ec8d10486824
2020-06-24T12:27:05.0185521Z  ---> f74610a77e7c
2020-06-24T12:27:05.0186310Z Step 5/12 : LABEL maintainer="Netlify"
2020-06-24T12:27:05.0406252Z  ---> Running in 140b98a218a5
2020-06-24T12:27:06.0199741Z Removing intermediate container 140b98a218a5
2020-06-24T12:27:06.0200045Z  ---> 4472b3cafb55
2020-06-24T12:27:06.0200350Z Step 6/12 : LABEL "com.github.actions.name"="Netlify"
2020-06-24T12:27:06.0421542Z  ---> Running in 2df4376abe77
2020-06-24T12:27:07.0179450Z Removing intermediate container 2df4376abe77
2020-06-24T12:27:07.0179747Z  ---> af75efeef56f
2020-06-24T12:27:07.0179979Z Step 7/12 : LABEL "com.github.actions.description"="Wraps the Netlify CLI to enable common Netlify commands"
2020-06-24T12:27:07.0512933Z  ---> Running in eec12751cc1d
2020-06-24T12:27:08.0192200Z Removing intermediate container eec12751cc1d
2020-06-24T12:27:08.0192517Z  ---> 45b9d292b004
2020-06-24T12:27:08.0192776Z Step 8/12 : LABEL "com.github.actions.icon"="cloud"
2020-06-24T12:27:08.0388119Z  ---> Running in 3b7238b54c91
2020-06-24T12:27:09.0216800Z Removing intermediate container 3b7238b54c91
2020-06-24T12:27:09.0230081Z  ---> b464c913daf6
2020-06-24T12:27:09.0230304Z Step 9/12 : LABEL "com.github.actions.color"="blue"
2020-06-24T12:27:09.0455048Z  ---> Running in f2e8b3886167
2020-06-24T12:27:10.0279524Z Removing intermediate container f2e8b3886167
2020-06-24T12:27:10.0279959Z  ---> 3de1c0a0e919
2020-06-24T12:27:10.0280189Z Step 10/12 : RUN yarn global add netlify-cli
2020-06-24T12:27:10.0482717Z  ---> Running in 6a19626e2124
2020-06-24T12:27:14.7294711Z yarn global v1.22.4
2020-06-24T12:27:14.8092337Z [1/4] Resolving packages...
2020-06-24T12:27:17.7204453Z e[91mwarning netlify-cli > copy-template-dir > readdirp > micromatch > snapdragon > source-map-resolve > urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
2020-06-24T12:27:17.7361104Z e[0me[91mwarning netlify-cli > copy-template-dir > readdirp > micromatch > snapdragon > source-map-resolve > resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
2020-06-24T12:27:17.9478467Z e[0m[2/4] Fetching packages...
2020-06-24T12:27:30.9187535Z info fsevents@2.1.3: The platform "linux" is incompatible with this module.
2020-06-24T12:27:30.9223687Z info "fsevents@2.1.3" is an optional dependency and failed compatibility check. Excluding it from installation.
2020-06-24T12:27:30.9345189Z [3/4] Linking dependencies...
2020-06-24T12:27:36.2600414Z [4/4] Building fresh packages...
2020-06-24T12:27:36.5001872Z success Installed "netlify-cli@2.54.0" with binaries:
2020-06-24T12:27:36.5002132Z       - ntl
2020-06-24T12:27:36.5002280Z       - netlify
2020-06-24T12:27:36.5029852Z Done in 21.78s.
2020-06-24T12:28:02.6334104Z Removing intermediate container 6a19626e2124
2020-06-24T12:28:02.6334321Z  ---> e0267d3e650e
2020-06-24T12:28:02.6334876Z Step 11/12 : COPY entrypoint.sh /entrypoint.sh
2020-06-24T12:28:05.0170706Z  ---> 74031079937f
2020-06-24T12:28:05.0170922Z Step 12/12 : ENTRYPOINT ["/entrypoint.sh"]
2020-06-24T12:28:05.0347554Z  ---> Running in a0239f974ed7
2020-06-24T12:28:07.1662108Z Removing intermediate container a0239f974ed7
2020-06-24T12:28:07.1667216Z  ---> aaf6daae8f3c
2020-06-24T12:28:07.1668338Z Successfully built aaf6daae8f3c
2020-06-24T12:28:07.1699172Z Successfully tagged c27d31:5f0cb342a3a64a2ca816b1fef41778f2

@Scott Part II of that deploy log:

2020-06-24T12:28:07.1955278Z ##[group]Run actions/checkout@v1
2020-06-24T12:28:07.1955637Z with:
2020-06-24T12:28:07.1955937Z   clean: true
2020-06-24T12:28:07.1956090Z ##[endgroup]
2020-06-24T12:28:07.4580792Z Syncing repository: brycewray/eleventy_solo
2020-06-24T12:28:07.4727543Z ##[command]git version
2020-06-24T12:28:07.5111226Z git version 2.27.0
2020-06-24T12:28:07.5203746Z ##[command]git lfs version
2020-06-24T12:28:07.6449303Z git-lfs/2.11.0 (GitHub; linux amd64; go 1.13.4)
2020-06-24T12:28:07.6619807Z ##[command]git init "/home/runner/work/eleventy_solo/eleventy_solo"
2020-06-24T12:28:07.6735229Z Initialized empty Git repository in /home/runner/work/eleventy_solo/eleventy_solo/.git/
2020-06-24T12:28:07.6757935Z ##[command]git remote add origin https://github.com/brycewray/eleventy_solo
2020-06-24T12:28:07.6910121Z ##[command]git config gc.auto 0
2020-06-24T12:28:07.6943679Z ##[command]git config --get-all http.https://github.com/brycewray/eleventy_solo.extraheader
2020-06-24T12:28:07.7039956Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --tags --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/*
2020-06-24T12:28:08.1434417Z remote: Enumerating objects: 1009, done.        
2020-06-24T12:28:08.1434773Z remote: Counting objects:   0% (1/1009)        
2020-06-24T12:28:08.1438754Z remote: Counting objects:   1% (11/1009)        
2020-06-24T12:28:08.1439059Z remote: Counting objects:   2% (21/1009)        
2020-06-24T12:28:08.1439394Z remote: Counting objects:   3% (31/1009)        
2020-06-24T12:28:08.1451735Z remote: Counting objects:   4% (41/1009)        
2020-06-24T12:28:08.1490163Z remote: Counting objects:   5% (51/1009)        
2020-06-24T12:28:08.1490413Z remote: Counting objects:   6% (61/1009)        
2020-06-24T12:28:08.1490686Z remote: Counting objects:   7% (71/1009)        
2020-06-24T12:28:08.1494139Z remote: Counting objects:   8% (81/1009)        
2020-06-24T12:28:08.1495496Z remote: Counting objects:   9% (91/1009)        
2020-06-24T12:28:08.1495772Z remote: Counting objects:  10% (101/1009)        
2020-06-24T12:28:08.1496330Z remote: Counting objects:  11% (111/1009)        
2020-06-24T12:28:08.1497501Z remote: Counting objects:  12% (122/1009)        
2020-06-24T12:28:08.1498867Z remote: Counting objects:  13% (132/1009)        
2020-06-24T12:28:08.1500158Z remote: Counting objects:  14% (142/1009)        
2020-06-24T12:28:08.1503687Z remote: Counting objects:  15% (152/1009)        
2020-06-24T12:28:08.1504987Z remote: Counting objects:  16% (162/1009)        
2020-06-24T12:28:08.1505495Z remote: Counting objects:  17% (172/1009)        
2020-06-24T12:28:08.1508570Z remote: Counting objects:  18% (182/1009)        
2020-06-24T12:28:08.1508797Z remote: Counting objects:  19% (192/1009)        
2020-06-24T12:28:08.1511137Z remote: Counting objects:  20% (202/1009)        
2020-06-24T12:28:08.1511406Z remote: Counting objects:  21% (212/1009)        
2020-06-24T12:28:08.1513540Z remote: Counting objects:  22% (222/1009)        
2020-06-24T12:28:08.1515292Z remote: Counting objects:  23% (233/1009)        
2020-06-24T12:28:08.1516633Z remote: Counting objects:  24% (243/1009)        
2020-06-24T12:28:08.1518483Z remote: Counting objects:  25% (253/1009)        
2020-06-24T12:28:08.1519812Z remote: Counting objects:  26% (263/1009)        
2020-06-24T12:28:08.1543417Z remote: Counting objects:  27% (273/1009)        
2020-06-24T12:28:08.1543675Z remote: Counting objects:  28% (283/1009)        
2020-06-24T12:28:08.1543948Z remote: Counting objects:  29% (293/1009)        
2020-06-24T12:28:08.8437365Z remote: Counting objects:  30% (303/1009)        
2020-06-24T12:28:08.8437953Z remote: Counting objects:  31% (313/1009)        
2020-06-24T12:28:08.8438239Z remote: Counting objects:  32% (323/1009)        
2020-06-24T12:28:08.8438448Z remote: Counting objects:  33% (333/1009)        
2020-06-24T12:28:08.8438655Z remote: Counting objects:  34% (344/1009)        
2020-06-24T12:28:08.8439026Z remote: Counting objects:  35% (354/1009)        
2020-06-24T12:28:08.8439656Z remote: Counting objects:  36% (364/1009)        
2020-06-24T12:28:08.8439912Z remote: Counting objects:  37% (374/1009)        
2020-06-24T12:28:08.8440121Z remote: Counting objects:  38% (384/1009)        
2020-06-24T12:28:08.8440363Z remote: Counting objects:  39% (394/1009)        
2020-06-24T12:28:08.8440570Z remote: Counting objects:  40% (404/1009)        
2020-06-24T12:28:08.8440772Z remote: Counting objects:  41% (414/1009)        
2020-06-24T12:28:08.8440976Z remote: Counting objects:  42% (424/1009)        
2020-06-24T12:28:08.8441192Z remote: Counting objects:  43% (434/1009)        
2020-06-24T12:28:08.8441419Z remote: Counting objects:  44% (444/1009)        
2020-06-24T12:28:08.8441622Z remote: Counting objects:  45% (455/1009)        
2020-06-24T12:28:08.8441824Z remote: Counting objects:  46% (465/1009)        
2020-06-24T12:28:08.8442052Z remote: Counting objects:  47% (475/1009)        
2020-06-24T12:28:08.8442255Z remote: Counting objects:  48% (485/1009)        
2020-06-24T12:28:08.8442466Z remote: Counting objects:  49% (495/1009)        
2020-06-24T12:28:08.8442727Z remote: Counting objects:  50% (505/1009)        
2020-06-24T12:28:08.8442950Z remote: Counting objects:  51% (515/1009)        
2020-06-24T12:28:08.8443154Z remote: Counting objects:  52% (525/1009)        
2020-06-24T12:28:08.8443354Z remote: Counting objects:  53% (535/1009)        
2020-06-24T12:28:08.8443578Z remote: Counting objects:  54% (545/1009)        
2020-06-24T12:28:08.8443781Z remote: Counting objects:  55% (555/1009)        
2020-06-24T12:28:08.8443990Z remote: Counting objects:  56% (566/1009)        
2020-06-24T12:28:08.8444195Z remote: Counting objects:  57% (576/1009)        
2020-06-24T12:28:08.8444412Z remote: Counting objects:  58% (586/1009)        
2020-06-24T12:28:08.8444613Z remote: Counting objects:  59% (596/1009)        
2020-06-24T12:28:08.8444813Z remote: Counting objects:  60% (606/1009)        
2020-06-24T12:28:08.8445014Z remote: Counting objects:  61% (616/1009)        
2020-06-24T12:28:08.8445246Z remote: Counting objects:  62% (626/1009)        
2020-06-24T12:28:08.8445651Z remote: Counting objects:  63% (636/1009)        
2020-06-24T12:28:08.8445857Z remote: Counting objects:  64% (646/1009)        
2020-06-24T12:28:08.8446125Z remote: Counting objects:  65% (656/1009)        
2020-06-24T12:28:08.8446334Z remote: Counting objects:  66% (666/1009)        
2020-06-24T12:28:08.8446904Z remote: Counting objects:  67% (677/1009)        
2020-06-24T12:28:08.8447110Z remote: Counting objects:  68% (687/1009)        
2020-06-24T12:28:08.8448264Z remote: Counting objects:  69% (697/1009)        
2020-06-24T12:28:08.8448530Z remote: Counting objects:  70% (707/1009)        
2020-06-24T12:28:08.8448738Z remote: Counting objects:  71% (717/1009)        
2020-06-24T12:28:08.8448966Z remote: Counting objects:  72% (727/1009)        
2020-06-24T12:28:08.8450435Z remote: Counting objects:  73% (737/1009)        
2020-06-24T12:28:08.8450706Z remote: Counting objects:  74% (747/1009)        
2020-06-24T12:28:08.8451112Z remote: Counting objects:  75% (757/1009)        
2020-06-24T12:28:08.8451597Z remote: Counting objects:  76% (767/1009)        
2020-06-24T12:28:08.8451892Z remote: Counting objects:  77% (777/1009)        
2020-06-24T12:28:08.8452177Z remote: Counting objects:  78% (788/1009)        
2020-06-24T12:28:08.8452522Z remote: Counting objects:  79% (798/1009)        
2020-06-24T12:28:08.8452744Z remote: Counting objects:  80% (808/1009)        
2020-06-24T12:28:08.8452994Z remote: Counting objects:  81% (818/1009)        
2020-06-24T12:28:08.8453302Z remote: Counting objects:  82% (828/1009)        
2020-06-24T12:28:08.8456214Z remote: Counting objects:  83% (838/1009)        
2020-06-24T12:28:08.8459245Z remote: Counting objects:  84% (848/1009)        
2020-06-24T12:28:08.8459545Z remote: Counting objects:  85% (858/1009)        
2020-06-24T12:28:08.8462051Z remote: Counting objects:  86% (868/1009)        
2020-06-24T12:28:08.8464890Z remote: Counting objects:  87% (878/1009)        
2020-06-24T12:28:08.8465161Z remote: Counting objects:  88% (888/1009)        
2020-06-24T12:28:08.8465369Z remote: Counting objects:  89% (899/1009)        
2020-06-24T12:28:08.8465573Z remote: Counting objects:  90% (909/1009)        
2020-06-24T12:28:08.8465820Z remote: Counting objects:  91% (919/1009)        
2020-06-24T12:28:08.8466024Z remote: Counting objects:  92% (929/1009)        
2020-06-24T12:28:08.8466348Z remote: Counting objects:  93% (939/1009)        
2020-06-24T12:28:08.8466553Z remote: Counting objects:  94% (949/1009)        
2020-06-24T12:28:08.8466774Z remote: Counting objects:  95% (959/1009)        
2020-06-24T12:28:08.8466976Z remote: Counting objects:  96% (969/1009)        
2020-06-24T12:28:08.8467409Z remote: Counting objects:  97% (979/1009)        
2020-06-24T12:28:08.8467649Z remote: Counting objects:  98% (989/1009)        
2020-06-24T12:28:08.8467869Z remote: Counting objects:  99% (999/1009)        
2020-06-24T12:28:08.8468240Z remote: Counting objects: 100% (1009/1009)        
2020-06-24T12:28:08.8468463Z remote: Counting objects: 100% (1009/1009), done.        
2020-06-24T12:28:08.8468904Z remote: Compressing objects:   0% (1/619)        
2020-06-24T12:28:08.8469202Z remote: Compressing objects:   1% (7/619)        
2020-06-24T12:28:08.8469415Z remote: Compressing objects:   2% (13/619)        
2020-06-24T12:28:08.8469625Z remote: Compressing objects:   3% (19/619)        
2020-06-24T12:28:08.8469872Z remote: Compressing objects:   4% (25/619)        
2020-06-24T12:28:08.8470254Z remote: Compressing objects:   5% (31/619)        
2020-06-24T12:28:08.8470473Z remote: Compressing objects:   6% (38/619)        
2020-06-24T12:28:08.8470682Z remote: Compressing objects:   7% (44/619)        
2020-06-24T12:28:08.8471014Z remote: Compressing objects:   8% (50/619)        
2020-06-24T12:28:08.8471232Z remote: Compressing objects:   9% (56/619)        
2020-06-24T12:28:08.8471477Z remote: Compressing objects:  10% (62/619)        
2020-06-24T12:28:08.8471739Z remote: Compressing objects:  11% (69/619)        
2020-06-24T12:28:08.8472054Z remote: Compressing objects:  12% (75/619)        
2020-06-24T12:28:08.8472266Z remote: Compressing objects:  13% (81/619)        
2020-06-24T12:28:08.8473658Z remote: Compressing objects:  14% (87/619)        
2020-06-24T12:28:08.8473876Z remote: Compressing objects:  15% (93/619)        
2020-06-24T12:28:08.8474086Z remote: Compressing objects:  16% (100/619)        
2020-06-24T12:28:08.8475441Z remote: Compressing objects:  17% (106/619)        
2020-06-24T12:28:08.8477113Z remote: Compressing objects:  18% (112/619)        
2020-06-24T12:28:08.8477523Z remote: Compressing objects:  19% (118/619)        
2020-06-24T12:28:08.8477852Z remote: Compressing objects:  20% (124/619)        
2020-06-24T12:28:08.8478064Z remote: Compressing objects:  21% (130/619)        
2020-06-24T12:28:08.8478330Z remote: Compressing objects:  22% (137/619)        
2020-06-24T12:28:08.8482511Z remote: Compressing objects:  23% (143/619)        
2020-06-24T12:28:08.8482926Z remote: Compressing objects:  24% (149/619)        
2020-06-24T12:28:08.8483247Z remote: Compressing objects:  25% (155/619)        
2020-06-24T12:28:08.8483526Z remote: Compressing objects:  26% (161/619)        
2020-06-24T12:28:08.8483738Z remote: Compressing objects:  27% (168/619)        
2020-06-24T12:28:08.8483948Z remote: Compressing objects:  28% (174/619)        
2020-06-24T12:28:08.8484271Z remote: Compressing objects:  29% (180/619)        
2020-06-24T12:28:08.8484487Z remote: Compressing objects:  30% (186/619)        
2020-06-24T12:28:08.8484724Z remote: Compressing objects:  31% (192/619)        
2020-06-24T12:28:08.8484933Z remote: Compressing objects:  32% (199/619)        
2020-06-24T12:28:08.8485172Z remote: Compressing objects:  33% (205/619)        
2020-06-24T12:28:08.8485383Z remote: Compressing objects:  34% (211/619)        
2020-06-24T12:28:08.8485588Z remote: Compressing objects:  35% (217/619)        
2020-06-24T12:28:08.8486967Z remote: Compressing objects:  36% (223/619)        
2020-06-24T12:28:08.8487211Z remote: Compressing objects:  37% (230/619)        
2020-06-24T12:28:08.8487440Z remote: Compressing objects:  38% (236/619)        
2020-06-24T12:28:08.8488599Z remote: Compressing objects:  39% (242/619)        
2020-06-24T12:28:08.8488840Z remote: Compressing objects:  40% (248/619)        
2020-06-24T12:28:08.8491147Z remote: Compressing objects:  41% (254/619)        
2020-06-24T12:28:08.8491490Z remote: Compressing objects:  42% (260/619)        
2020-06-24T12:28:08.8492797Z remote: Compressing objects:  43% (267/619)        
2020-06-24T12:28:08.8493022Z remote: Compressing objects:  44% (273/619)        
2020-06-24T12:28:08.8493253Z remote: Compressing objects:  45% (279/619)        
2020-06-24T12:28:08.8493458Z remote: Compressing objects:  46% (285/619)        
2020-06-24T12:28:08.8493692Z remote: Compressing objects:  47% (291/619)        
2020-06-24T12:28:08.8494867Z remote: Compressing objects:  48% (298/619)        
2020-06-24T12:28:08.8495149Z remote: Compressing objects:  49% (304/619)        
2020-06-24T12:28:08.8496298Z remote: Compressing objects:  50% (310/619)        
2020-06-24T12:28:08.8496535Z remote: Compressing objects:  51% (316/619)        
2020-06-24T12:28:08.8496761Z remote: Compressing objects:  52% (322/619)        
2020-06-24T12:28:08.8649986Z remote: Compressing objects:  53% (329/619)        
2020-06-24T12:28:08.8650338Z remote: Compressing objects:  54% (335/619)        
2020-06-24T12:28:08.8650508Z remote: Compressing objects:  55% (341/619)        
2020-06-24T12:28:08.8650690Z remote: Compressing objects:  56% (347/619)        
2020-06-24T12:28:08.8650945Z remote: Compressing objects:  57% (353/619)        
2020-06-24T12:28:08.8651101Z remote: Compressing objects:  58% (360/619)        
2020-06-24T12:28:08.8651262Z remote: Compressing objects:  59% (366/619)        
2020-06-24T12:28:08.8651685Z remote: Compressing objects:  60% (372/619)        
2020-06-24T12:28:08.8651847Z remote: Compressing objects:  61% (378/619)        
2020-06-24T12:28:08.8652018Z remote: Compressing objects:  62% (384/619)        
2020-06-24T12:28:08.8652177Z remote: Compressing objects:  63% (390/619)        
2020-06-24T12:28:08.8652334Z remote: Compressing objects:  64% (397/619)        
2020-06-24T12:28:08.8699622Z remote: Compressing objects:  65% (403/619)        
2020-06-24T12:28:08.8699812Z remote: Compressing objects:  66% (409/619)        
2020-06-24T12:28:08.8699977Z remote: Compressing objects:  67% (415/619)        
2020-06-24T12:28:08.8700145Z remote: Compressing objects:  68% (421/619)        
2020-06-24T12:28:08.8718829Z remote: Compressing objects:  69% (428/619)        
2020-06-24T12:28:08.8718999Z remote: Compressing objects:  70% (434/619)        
2020-06-24T12:28:08.8719164Z remote: Compressing objects:  71% (440/619)        
2020-06-24T12:28:08.8719329Z remote: Compressing objects:  72% (446/619)        
2020-06-24T12:28:08.8719490Z remote: Compressing objects:  73% (452/619)        
2020-06-24T12:28:08.8719662Z remote: Compressing objects:  74% (459/619)        
2020-06-24T12:28:08.8719825Z remote: Compressing objects:  75% (465/619)        
2020-06-24T12:28:08.8719989Z remote: Compressing objects:  76% (471/619)        
2020-06-24T12:28:08.8720155Z remote: Compressing objects:  77% (477/619)        
2020-06-24T12:28:08.8720332Z remote: Compressing objects:  78% (483/619)        
2020-06-24T12:28:08.8720498Z remote: Compressing objects:  79% (490/619)        
2020-06-24T12:28:08.8720658Z remote: Compressing objects:  80% (496/619)        
2020-06-24T12:28:08.8720833Z remote: Compressing objects:  81% (502/619)        
2020-06-24T12:28:08.8720997Z remote: Compressing objects:  82% (508/619)        
2020-06-24T12:28:08.8721160Z remote: Compressing objects:  83% (514/619)        
2020-06-24T12:28:08.8721321Z remote: Compressing objects:  84% (520/619)        
2020-06-24T12:28:08.8721484Z remote: Compressing objects:  85% (527/619)        
2020-06-24T12:28:08.8721644Z remote: Compressing objects:  86% (533/619)        
2020-06-24T12:28:08.8721941Z remote: Compressing objects:  87% (539/619)        
2020-06-24T12:28:08.8722122Z remote: Compressing objects:  88% (545/619)        
2020-06-24T12:28:08.8722288Z remote: Compressing objects:  89% (551/619)        
2020-06-24T12:28:08.8722449Z remote: Compressing objects:  90% (558/619)        
2020-06-24T12:28:08.8722610Z remote: Compressing objects:  91% (564/619)        
2020-06-24T12:28:08.8722770Z remote: Compressing objects:  92% (570/619)        
2020-06-24T12:28:08.8722945Z remote: Compressing objects:  93% (576/619)        
2020-06-24T12:28:08.8723113Z remote: Compressing objects:  94% (582/619)        
2020-06-24T12:28:08.8723273Z remote: Compressing objects:  95% (589/619)        
2020-06-24T12:28:08.8723436Z remote: Compressing objects:  96% (595/619)        
2020-06-24T12:28:08.8723598Z remote: Compressing objects:  97% (601/619)        
2020-06-24T12:28:08.8723759Z remote: Compressing objects:  98% (607/619)        
2020-06-24T12:28:08.8723919Z remote: Compressing objects:  99% (613/619)        
2020-06-24T12:28:08.8724087Z remote: Compressing objects: 100% (619/619)        
2020-06-24T12:28:08.8724257Z remote: Compressing objects: 100% (619/619), done.        
2020-06-24T12:28:08.8724422Z Receiving objects:   0% (1/9443)
2020-06-24T12:28:08.8724578Z Receiving objects:   1% (95/9443)
2020-06-24T12:28:08.8724731Z Receiving objects:   2% (189/9443)
2020-06-24T12:28:08.8724883Z Receiving objects:   3% (284/9443)
2020-06-24T12:28:08.8725035Z Receiving objects:   4% (378/9443)
2020-06-24T12:28:08.8725187Z Receiving objects:   5% (473/9443)
2020-06-24T12:28:08.8725353Z Receiving objects:   6% (567/9443)
2020-06-24T12:28:08.8725504Z Receiving objects:   7% (662/9443)
2020-06-24T12:28:08.8725699Z Receiving objects:   8% (756/9443)
2020-06-24T12:28:08.8725855Z Receiving objects:   9% (850/9443)
2020-06-24T12:28:08.8902628Z Receiving objects:  10% (945/9443)
2020-06-24T12:28:09.1390221Z Receiving objects:  11% (1039/9443)
2020-06-24T12:28:09.2541848Z Receiving objects:  12% (1134/9443)
2020-06-24T12:28:09.2563980Z Receiving objects:  13% (1228/9443)
2020-06-24T12:28:09.2617126Z Receiving objects:  14% (1323/9443)
2020-06-24T12:28:09.2675474Z Receiving objects:  15% (1417/9443)
2020-06-24T12:28:09.2794639Z Receiving objects:  16% (1511/9443)
2020-06-24T12:28:09.4935192Z Receiving objects:  17% (1606/9443)
2020-06-24T12:28:09.6047805Z Receiving objects:  18% (1700/9443), 17.49 MiB | 34.97 MiB/s
2020-06-24T12:28:09.6958348Z Receiving objects:  19% (1795/9443), 17.49 MiB | 34.97 MiB/s
2020-06-24T12:28:09.7113461Z Receiving objects:  20% (1889/9443), 17.49 MiB | 34.97 MiB/s
2020-06-24T12:28:09.7436046Z Receiving objects:  21% (1984/9443), 17.49 MiB | 34.97 MiB/s
2020-06-24T12:28:09.8532918Z Receiving objects:  22% (2078/9443), 17.49 MiB | 34.97 MiB/s
2020-06-24T12:28:09.8609614Z Receiving objects:  23% (2172/9443), 17.49 MiB | 34.97 MiB/s
2020-06-24T12:28:09.8728330Z Receiving objects:  23% (2180/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.0115333Z Receiving objects:  24% (2267/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2259865Z Receiving objects:  25% (2361/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2269140Z Receiving objects:  26% (2456/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2273377Z Receiving objects:  27% (2550/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2277728Z Receiving objects:  28% (2645/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2404005Z Receiving objects:  29% (2739/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2408259Z Receiving objects:  30% (2833/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2458850Z Receiving objects:  31% (2928/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2535921Z Receiving objects:  32% (3022/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2538711Z Receiving objects:  33% (3117/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2541681Z Receiving objects:  34% (3211/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2544506Z Receiving objects:  35% (3306/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2548864Z Receiving objects:  36% (3400/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2554062Z Receiving objects:  37% (3494/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2622634Z Receiving objects:  38% (3589/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2626343Z Receiving objects:  39% (3683/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2633578Z Receiving objects:  40% (3778/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2636266Z Receiving objects:  41% (3872/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2639186Z Receiving objects:  42% (3967/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2646642Z Receiving objects:  43% (4061/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.2656729Z Receiving objects:  44% (4155/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3335762Z Receiving objects:  45% (4250/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3336511Z Receiving objects:  46% (4344/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3337336Z Receiving objects:  47% (4439/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3338102Z Receiving objects:  48% (4533/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3338892Z Receiving objects:  49% (4628/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3339687Z Receiving objects:  50% (4722/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3340476Z Receiving objects:  51% (4816/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3341281Z Receiving objects:  52% (4911/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3342068Z Receiving objects:  53% (5005/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.3342865Z Receiving objects:  54% (5100/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.5378538Z Receiving objects:  55% (5194/9443), 40.96 MiB | 40.96 MiB/s
2020-06-24T12:28:10.8579343Z Receiving objects:  56% (5289/9443), 64.37 MiB | 42.94 MiB/s
2020-06-24T12:28:10.8812761Z Receiving objects:  56% (5308/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8815117Z Receiving objects:  57% (5383/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8820241Z Receiving objects:  58% (5477/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8821989Z Receiving objects:  59% (5572/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8825597Z Receiving objects:  60% (5666/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8849944Z Receiving objects:  61% (5761/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8856118Z Receiving objects:  62% (5855/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8860694Z Receiving objects:  63% (5950/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8863220Z Receiving objects:  64% (6044/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.8875735Z Receiving objects:  65% (6138/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9587197Z Receiving objects:  66% (6233/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9589280Z Receiving objects:  67% (6327/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9590390Z Receiving objects:  68% (6422/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9592076Z Receiving objects:  69% (6516/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9596285Z Receiving objects:  70% (6611/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9597430Z Receiving objects:  71% (6705/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9598928Z Receiving objects:  72% (6799/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9600676Z Receiving objects:  73% (6894/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:10.9602582Z Receiving objects:  74% (6988/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1648194Z Receiving objects:  75% (7083/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1659496Z Receiving objects:  76% (7177/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1661734Z Receiving objects:  77% (7272/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1664134Z Receiving objects:  78% (7366/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1776390Z Receiving objects:  79% (7460/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1778568Z Receiving objects:  80% (7555/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1780567Z Receiving objects:  81% (7649/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1791503Z Receiving objects:  82% (7744/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.1813022Z Receiving objects:  83% (7838/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.3265959Z Receiving objects:  84% (7933/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.4196328Z Receiving objects:  85% (8027/9443), 88.73 MiB | 44.38 MiB/s
2020-06-24T12:28:11.4198124Z Receiving objects:  86% (8121/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.4208536Z Receiving objects:  87% (8216/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.4225733Z Receiving objects:  88% (8310/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.4242580Z Receiving objects:  89% (8405/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.4256881Z Receiving objects:  90% (8499/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6005566Z Receiving objects:  91% (8594/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6171764Z Receiving objects:  92% (8688/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6183373Z Receiving objects:  93% (8782/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6184796Z Receiving objects:  94% (8877/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6254246Z Receiving objects:  95% (8971/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6255855Z Receiving objects:  96% (9066/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6257399Z Receiving objects:  97% (9160/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6279791Z Receiving objects:  98% (9255/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6293508Z Receiving objects:  99% (9349/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6295486Z remote: Total 9443 (delta 512), reused 780 (delta 354), pack-reused 8434        
2020-06-24T12:28:11.6312469Z Receiving objects: 100% (9443/9443), 112.75 MiB | 45.12 MiB/s
2020-06-24T12:28:11.6314414Z Receiving objects: 100% (9443/9443), 126.39 MiB | 45.59 MiB/s, done.

@Scott Part III (conclusion) of the deploy log…

2020-06-24T12:28:11.6326649Z Resolving deltas:   0% (0/5215)
2020-06-24T12:28:11.6330780Z Resolving deltas:   3% (173/5215)
2020-06-24T12:28:11.6343038Z Resolving deltas:   5% (301/5215)
2020-06-24T12:28:11.6351594Z Resolving deltas:  10% (546/5215)
2020-06-24T12:28:11.6357061Z Resolving deltas:  11% (601/5215)
2020-06-24T12:28:11.6382551Z Resolving deltas:  12% (632/5215)
2020-06-24T12:28:11.6388120Z Resolving deltas:  14% (749/5215)
2020-06-24T12:28:11.6432978Z Resolving deltas:  15% (791/5215)
2020-06-24T12:28:11.6439762Z Resolving deltas:  17% (924/5215)
2020-06-24T12:28:11.6455804Z Resolving deltas:  18% (939/5215)
2020-06-24T12:28:11.6473589Z Resolving deltas:  19% (996/5215)
2020-06-24T12:28:11.6487954Z Resolving deltas:  20% (1044/5215)
2020-06-24T12:28:11.6516464Z Resolving deltas:  21% (1101/5215)
2020-06-24T12:28:11.6572386Z Resolving deltas:  22% (1160/5215)
2020-06-24T12:28:11.6625089Z Resolving deltas:  23% (1209/5215)
2020-06-24T12:28:11.6656083Z Resolving deltas:  24% (1267/5215)
2020-06-24T12:28:11.6688999Z Resolving deltas:  25% (1314/5215)
2020-06-24T12:28:11.6731082Z Resolving deltas:  26% (1358/5215)
2020-06-24T12:28:11.6801337Z Resolving deltas:  27% (1411/5215)
2020-06-24T12:28:11.6827866Z Resolving deltas:  28% (1484/5215)
2020-06-24T12:28:11.6870214Z Resolving deltas:  29% (1519/5215)
2020-06-24T12:28:11.6907414Z Resolving deltas:  30% (1570/5215)
2020-06-24T12:28:11.6972709Z Resolving deltas:  31% (1620/5215)
2020-06-24T12:28:11.7007425Z Resolving deltas:  32% (1675/5215)
2020-06-24T12:28:11.7057332Z Resolving deltas:  33% (1742/5215)
2020-06-24T12:28:11.7078303Z Resolving deltas:  34% (1785/5215)
2020-06-24T12:28:11.7113534Z Resolving deltas:  35% (1832/5215)
2020-06-24T12:28:11.7147561Z Resolving deltas:  36% (1897/5215)
2020-06-24T12:28:11.7182021Z Resolving deltas:  37% (1932/5215)
2020-06-24T12:28:11.7218910Z Resolving deltas:  38% (1988/5215)
2020-06-24T12:28:11.7248369Z Resolving deltas:  39% (2039/5215)
2020-06-24T12:28:11.7288193Z Resolving deltas:  40% (2086/5215)
2020-06-24T12:28:11.7299448Z Resolving deltas:  41% (2145/5215)
2020-06-24T12:28:11.7306718Z Resolving deltas:  42% (2191/5215)
2020-06-24T12:28:11.7313347Z Resolving deltas:  43% (2271/5215)
2020-06-24T12:28:11.7336791Z Resolving deltas:  44% (2297/5215)
2020-06-24T12:28:11.7345610Z Resolving deltas:  45% (2374/5215)
2020-06-24T12:28:11.7351604Z Resolving deltas:  46% (2399/5215)
2020-06-24T12:28:11.7357197Z Resolving deltas:  47% (2453/5215)
2020-06-24T12:28:11.7362654Z Resolving deltas:  48% (2513/5215)
2020-06-24T12:28:11.7372865Z Resolving deltas:  49% (2571/5215)
2020-06-24T12:28:11.7381187Z Resolving deltas:  50% (2619/5215)
2020-06-24T12:28:11.7385338Z Resolving deltas:  52% (2751/5215)
2020-06-24T12:28:11.7391740Z Resolving deltas:  53% (2764/5215)
2020-06-24T12:28:11.7401141Z Resolving deltas:  54% (2824/5215)
2020-06-24T12:28:11.7406089Z Resolving deltas:  55% (2894/5215)
2020-06-24T12:28:11.7415869Z Resolving deltas:  56% (2922/5215)
2020-06-24T12:28:11.7435114Z Resolving deltas:  57% (2976/5215)
2020-06-24T12:28:11.7444597Z Resolving deltas:  58% (3032/5215)
2020-06-24T12:28:11.7458888Z Resolving deltas:  59% (3077/5215)
2020-06-24T12:28:11.7464096Z Resolving deltas:  60% (3142/5215)
2020-06-24T12:28:11.7472425Z Resolving deltas:  61% (3189/5215)
2020-06-24T12:28:11.7478091Z Resolving deltas:  62% (3261/5215)
2020-06-24T12:28:11.7484851Z Resolving deltas:  63% (3300/5215)
2020-06-24T12:28:11.7488450Z Resolving deltas:  64% (3382/5215)
2020-06-24T12:28:11.7511671Z Resolving deltas:  65% (3390/5215)
2020-06-24T12:28:11.7517259Z Resolving deltas:  66% (3447/5215)
2020-06-24T12:28:11.7522086Z Resolving deltas:  67% (3509/5215)
2020-06-24T12:28:11.7528443Z Resolving deltas:  68% (3547/5215)
2020-06-24T12:28:11.7537482Z Resolving deltas:  69% (3606/5215)
2020-06-24T12:28:11.7543908Z Resolving deltas:  71% (3707/5215)
2020-06-24T12:28:11.7548200Z Resolving deltas:  72% (3791/5215)
2020-06-24T12:28:11.7554841Z Resolving deltas:  73% (3807/5215)
2020-06-24T12:28:11.7559211Z Resolving deltas:  74% (3898/5215)
2020-06-24T12:28:11.7568109Z Resolving deltas:  75% (3912/5215)
2020-06-24T12:28:11.7575194Z Resolving deltas:  77% (4030/5215)
2020-06-24T12:28:11.7581474Z Resolving deltas:  78% (4075/5215)
2020-06-24T12:28:11.7586360Z Resolving deltas:  79% (4143/5215)
2020-06-24T12:28:11.7591678Z Resolving deltas:  80% (4179/5215)
2020-06-24T12:28:11.7597623Z Resolving deltas:  81% (4226/5215)
2020-06-24T12:28:11.7604384Z Resolving deltas:  82% (4278/5215)
2020-06-24T12:28:11.7643076Z Resolving deltas:  83% (4335/5215)
2020-06-24T12:28:11.7649421Z Resolving deltas:  85% (4457/5215)
2020-06-24T12:28:11.7656783Z Resolving deltas:  86% (4491/5215)
2020-06-24T12:28:11.7662085Z Resolving deltas:  87% (4548/5215)
2020-06-24T12:28:11.7667403Z Resolving deltas:  88% (4590/5215)
2020-06-24T12:28:11.7693218Z Resolving deltas:  89% (4644/5215)
2020-06-24T12:28:11.7701861Z Resolving deltas:  92% (4816/5215)
2020-06-24T12:28:11.7775782Z Resolving deltas:  93% (4850/5215)
2020-06-24T12:28:12.3433918Z Resolving deltas:  94% (4923/5215)
2020-06-24T12:28:12.3434200Z Resolving deltas:  95% (4958/5215)
2020-06-24T12:28:12.3435447Z Resolving deltas:  96% (5009/5215)
2020-06-24T12:28:12.3435651Z Resolving deltas:  97% (5060/5215)
2020-06-24T12:28:12.3435814Z Resolving deltas:  98% (5112/5215)
2020-06-24T12:28:12.3436300Z Resolving deltas:  99% (5165/5215)
2020-06-24T12:28:12.3436684Z Resolving deltas: 100% (5215/5215)
2020-06-24T12:28:12.3437018Z Resolving deltas: 100% (5215/5215), done.
2020-06-24T12:28:13.7069011Z From https://github.com/brycewray/eleventy_solo
2020-06-24T12:28:13.7072390Z  * [new branch]      base           -> origin/base
2020-06-24T12:28:13.7074995Z  * [new branch]      heroes         -> origin/heroes
2020-06-24T12:28:13.7078128Z  * [new branch]      img-plugin     -> origin/img-plugin
2020-06-24T12:28:13.7080577Z  * [new branch]      imgxfm         -> origin/imgxfm
2020-06-24T12:28:13.7082163Z  * [new branch]      lazyvanilla    -> origin/lazyvanilla
2020-06-24T12:28:13.7083498Z  * [new branch]      master         -> origin/master
2020-06-24T12:28:13.7085151Z  * [new branch]      plugin2        -> origin/plugin2
2020-06-24T12:28:13.7086535Z  * [new branch]      tw             -> origin/tw
2020-06-24T12:28:13.7087842Z  * [new branch]      tw-customizing -> origin/tw-customizing
2020-06-24T12:28:13.7088639Z  * [new branch]      unpacking      -> origin/unpacking
2020-06-24T12:28:13.7089412Z  * [new branch]      verceltest     -> origin/verceltest
2020-06-24T12:28:13.7090232Z  * [new branch]      verlok-lazyload-issue-20200520 -> origin/verlok-lazyload-issue-20200520
2020-06-24T12:28:13.7225075Z ##[command]git checkout --progress --force 841c2aab93f8ba173ad37579e3894913c0b36dde
2020-06-24T12:28:13.9339355Z Note: switching to '841c2aab93f8ba173ad37579e3894913c0b36dde'.
2020-06-24T12:28:13.9340656Z 
2020-06-24T12:28:13.9341840Z You are in 'detached HEAD' state. You can look around, make experimental
2020-06-24T12:28:13.9342101Z changes and commit them, and you can discard any commits you make in this
2020-06-24T12:28:13.9342284Z state without impacting any branches by switching back to a branch.
2020-06-24T12:28:13.9342381Z 
2020-06-24T12:28:13.9342636Z If you want to create a new branch to retain commits you create, you may
2020-06-24T12:28:13.9343140Z do so (now or later) by using -c with the switch command. Example:
2020-06-24T12:28:13.9343245Z 
2020-06-24T12:28:13.9343542Z   git switch -c <new-branch-name>
2020-06-24T12:28:13.9343619Z 
2020-06-24T12:28:13.9343748Z Or undo this operation with:
2020-06-24T12:28:13.9343839Z 
2020-06-24T12:28:13.9344102Z   git switch -
2020-06-24T12:28:13.9344187Z 
2020-06-24T12:28:13.9344334Z Turn off this advice by setting config variable advice.detachedHead to false
2020-06-24T12:28:13.9344441Z 
2020-06-24T12:28:13.9344581Z HEAD is now at 841c2aa Trying with "" around netlify.toml ref
2020-06-24T12:28:13.9489541Z ##[group]Run actions/cache@v1
2020-06-24T12:28:13.9489729Z with:
2020-06-24T12:28:13.9489877Z   path: ~/.npm
2020-06-24T12:28:13.9490019Z   key: npm-packages
2020-06-24T12:28:13.9490172Z ##[endgroup]
2020-06-24T12:28:20.8826577Z Cache Size: ~63 MB (66319943 B)
2020-06-24T12:28:20.8865988Z [command]/bin/tar -xz -f /home/runner/work/_temp/18f9b1a6-13c2-4d80-bc0a-66fd2b88c7af/cache.tgz -C /home/runner/.npm
2020-06-24T12:28:21.6783213Z Cache restored from key: npm-packages
2020-06-24T12:28:21.6923942Z ##[group]Run actions/setup-node@v1
2020-06-24T12:28:21.6924147Z with:
2020-06-24T12:28:21.6924309Z   node-version: 12.x
2020-06-24T12:28:21.6924468Z   always-auth: false
2020-06-24T12:28:21.6924631Z ##[endgroup]
2020-06-24T12:28:21.8079058Z [command]/opt/hostedtoolcache/node/12.18.1/x64/bin/node --version
2020-06-24T12:28:21.9853765Z v12.18.1
2020-06-24T12:28:21.9876870Z [command]/opt/hostedtoolcache/node/12.18.1/x64/bin/npm --version
2020-06-24T12:28:22.4665628Z 6.14.5
2020-06-24T12:28:22.4907094Z ##[group]Run npm install
2020-06-24T12:28:22.4907383Z e[36;1mnpm installe[0m
2020-06-24T12:28:22.4951895Z shell: /bin/bash -e {0}
2020-06-24T12:28:22.4952085Z ##[endgroup]
2020-06-24T12:28:41.2641081Z 
2020-06-24T12:28:41.2643752Z > fibers@5.0.0 install /home/runner/work/eleventy_solo/eleventy_solo/node_modules/fibers
2020-06-24T12:28:41.2644181Z > node build.js || nodejs build.js
2020-06-24T12:28:41.2644321Z 
2020-06-24T12:28:41.2645343Z `linux-x64-72-glibc` exists; testing
2020-06-24T12:28:41.2645592Z Binary is fine; exiting
2020-06-24T12:28:41.2645715Z 
2020-06-24T12:28:41.2646151Z > sharp@0.25.2 install /home/runner/work/eleventy_solo/eleventy_solo/node_modules/sharp
2020-06-24T12:28:41.2646971Z > (node install/libvips && node install/dll-copy && prebuild-install --runtime=napi) || (node-gyp rebuild && node install/dll-copy)
2020-06-24T12:28:41.2647167Z 
2020-06-24T12:28:50.0828993Z info sharp Using cached /home/runner/.npm/_libvips/libvips-8.9.1-linux-x64.tar.gz
2020-06-24T12:28:51.1704011Z 
2020-06-24T12:28:51.1706250Z > core-js@2.6.11 postinstall /home/runner/work/eleventy_solo/eleventy_solo/node_modules/core-js
2020-06-24T12:28:51.1707444Z > node -e "try{require('./postinstall')}catch(e){}"
2020-06-24T12:28:51.1707956Z 
2020-06-24T12:28:51.2503121Z 
2020-06-24T12:28:51.2505538Z > ejs@2.7.4 postinstall /home/runner/work/eleventy_solo/eleventy_solo/node_modules/ejs
2020-06-24T12:28:51.2506423Z > node ./postinstall.js
2020-06-24T12:28:51.2512110Z 
2020-06-24T12:28:52.6936751Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.13 (node_modules/fsevents):
2020-06-24T12:28:52.6939644Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.13: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2020-06-24T12:28:52.6949406Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.1.3 (node_modules/chokidar/node_modules/fsevents):
2020-06-24T12:28:52.6952429Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.1.3: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2020-06-24T12:28:52.6956505Z 
2020-06-24T12:28:52.7023089Z added 1291 packages from 835 contributors and audited 1305 packages in 29.468s
2020-06-24T12:28:53.4768328Z 
2020-06-24T12:28:53.4773642Z 36 packages are looking for funding
2020-06-24T12:28:53.4774463Z   run `npm fund` for details
2020-06-24T12:28:53.4774880Z 
2020-06-24T12:28:53.4785901Z found 6 vulnerabilities (4 low, 2 high)
2020-06-24T12:28:53.4786236Z   run `npm audit fix` to fix them, or `npm audit` for details
2020-06-24T12:28:53.7618190Z ##[group]Run npm run build
2020-06-24T12:28:53.7618491Z e[36;1mnpm run builde[0m
2020-06-24T12:28:53.7664437Z shell: /bin/bash -e {0}
2020-06-24T12:28:53.7664871Z env:
2020-06-24T12:28:53.7665476Z   NETLIFY_AUTH_TOKEN: ***
2020-06-24T12:28:53.7665721Z   NETLIFY_SITE_ID: ***
2020-06-24T12:28:53.7665913Z   WEBMENTION_IO_TOKEN: ***
2020-06-24T12:28:53.7666081Z ##[endgroup]
2020-06-24T12:28:54.0620902Z 
2020-06-24T12:28:54.0621977Z > eleventy_solo@1.0.0 build /home/runner/work/eleventy_solo/eleventy_solo
2020-06-24T12:28:54.0623439Z > NODE_ENV=production npm-run-all clean imgs --parallel prod:*
2020-06-24T12:28:54.0623948Z 
2020-06-24T12:28:54.4864119Z 
2020-06-24T12:28:54.4865229Z > eleventy_solo@1.0.0 clean /home/runner/work/eleventy_solo/eleventy_solo
2020-06-24T12:28:54.4866657Z > rm -rf _site
2020-06-24T12:28:54.4867184Z 
2020-06-24T12:28:54.7751692Z 
2020-06-24T12:28:54.7753024Z > eleventy_solo@1.0.0 imgs /home/runner/work/eleventy_solo/eleventy_solo
2020-06-24T12:28:54.7753532Z > node imgxfm.js
2020-06-24T12:28:54.7753750Z 
2020-06-24T12:28:55.6201097Z Writing responsive images...
2020-06-24T12:29:42.1954300Z 
2020-06-24T12:29:42.1955620Z > eleventy_solo@1.0.0 prod:eleventy /home/runner/work/eleventy_solo/eleventy_solo
2020-06-24T12:29:42.1957593Z > ELEVENTY_ENV=production npx @11ty/eleventy --output=./_site
2020-06-24T12:29:42.1958081Z 
2020-06-24T12:29:42.2101182Z 
2020-06-24T12:29:42.2102366Z > eleventy_solo@1.0.0 prod:postcss /home/runner/work/eleventy_solo/eleventy_solo
2020-06-24T12:29:42.2103711Z > postcss src/assets/css/index.css -d _site/css/ --config ./postcss.config.js
2020-06-24T12:29:42.2104181Z 
2020-06-24T12:29:43.8998015Z 149 webmentions fetched from https://webmention.io/api/mentions.jf2
2020-06-24T12:29:43.9103114Z webmentions cached to _cache/webmentions.json
2020-06-24T12:29:46.7662512Z Benchmark (Data): `./_data/webmentions.js` took 497ms (11.6%)
2020-06-24T12:29:46.7666470Z Copied 34 files / Wrote 85 files in 3.41 seconds (40.1ms each, v0.11.0)
2020-06-24T12:29:46.9422546Z ##[group]Run netlify/actions/cli@master
2020-06-24T12:29:46.9422745Z with:
2020-06-24T12:29:46.9422936Z   netlify-config-path: ./netlify.toml
2020-06-24T12:29:46.9423103Z   args: deploy --dir=_site --prod
2020-06-24T12:29:46.9423299Z   secrets: ["NETLIFY_AUTH_TOKEN", "NETLIFY_SITE_ID", "WEBMENTION_IO_TOKEN"]
2020-06-24T12:29:46.9423476Z env:
2020-06-24T12:29:46.9423627Z   CI: true
2020-06-24T12:29:46.9424316Z   NETLIFY_AUTH_TOKEN: ***
2020-06-24T12:29:46.9424518Z   NETLIFY_SITE_ID: ***
2020-06-24T12:29:46.9424706Z   WEBMENTION_IO_TOKEN: ***
2020-06-24T12:29:46.9424864Z ##[endgroup]
2020-06-24T12:29:46.9459429Z ##[command]/usr/bin/docker run --name c27d315f0cb342a3a64a2ca816b1fef41778f2_6ab60a --label c27d31 --workdir /github/workspace --rm -e CI -e NETLIFY_AUTH_TOKEN -e NETLIFY_SITE_ID -e WEBMENTION_IO_TOKEN -e INPUT_NETLIFY-CONFIG-PATH -e INPUT_ARGS -e INPUT_SECRETS -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 -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/eleventy_solo/eleventy_solo":"/github/workspace" c27d31:5f0cb342a3a64a2ca816b1fef41778f2 deploy --dir=_site --prod
2020-06-24T12:29:49.9252144Z - Hashing files...
2020-06-24T12:29:50.8099549Z ✔ Finished hashing 1233 files
2020-06-24T12:29:50.8107702Z - CDN diffing files...
2020-06-24T12:29:51.0589252Z ✔ CDN requesting 2 files
2020-06-24T12:29:51.0596763Z - Uploading 2 files
2020-06-24T12:29:51.3918367Z ✔ Finished uploading 2 assets
2020-06-24T12:29:51.3921876Z - Waiting for deploy to go live...
2020-06-24T12:29:53.8390021Z ✔ Deploy is live!
2020-06-24T12:29:53.8649070Z Deploy path:        /github/workspace/_site
2020-06-24T12:29:53.8649495Z Configuration path: /github/workspace/netlify.toml
2020-06-24T12:29:53.8649809Z Deploying to main site URL...
2020-06-24T12:29:53.8649934Z 
2020-06-24T12:29:53.8650771Z Logs:              https://app.netlify.com/sites/agitated-leavitt-d77a5d/deploys/5ef3473e067ef301ade2baf7
2020-06-24T12:29:53.8651825Z Unique Deploy URL: https://5ef3473e067ef301ade2baf7--agitated-leavitt-d77a5d.netlify.app
2020-06-24T12:29:53.8652234Z Website URL:       https://brycewray.com
2020-06-24T12:29:54.0423558Z Post job cleanup.
2020-06-24T12:29:54.1184117Z Cache hit occurred on the primary key npm-packages, not saving cache.
2020-06-24T12:29:54.1238775Z Cleaning up orphan processes

Hi, @brycewray, would you please send us a URL for an asset which isn’t optimized which you want to be optimized?

I do see optimized files. The logs above report the specific deploy as:

https://5ef3473e067ef301ade2baf7--agitated-leavitt-d77a5d.netlify.app/

Examining the HTML returned by that URL, I do see references to optimized assets, for example:

<script src='https://d33wubrfki0l68.cloudfront.net/js/b75fb50c70a9080add398b647848a877f62b61cb/assets/js/lazyload.min.js'></script>

If there are specific assets not being optimized, please let us know what the URLs are for those assets and we’ll find out why the optimization isn’t happening.

@luke Can only take a moment to answer due to the hour — but, just as an example: netlify.toml specifies that the JS files should be bundled (as they were under the Netlify UI method rather than GitHub Actions CI/CD); and, as the example you gave shows, they’re not.

Thanks.

@luke I believe I found the answer. I had commented out the call to one of the JS files while testing its effects on performance and, apparently, that changed the bundling process somehow. The builds I’ve done since un-commenting-out (?) the script call, bundling is clearly working again. My apologies, but thanks to you and @Scott for your help!