SamKirkland / FTP-Deploy-Action

Deploys a GitHub project to a FTP server using GitHub actions
MIT License
3.75k stars 368 forks source link

Not excluding node_modules by default #186

Closed jp-albrecht closed 3 years ago

jp-albrecht commented 3 years ago

Bug Description If I do not explicitly exclude node_modules, they get deployed along with my code base.

My Action Config This is my desired config, but currently does not exclude node_modules

  1 name: πŸš€  Deploy website on push to master
  2 
  3 on:
  4   push:
  5     branches: [master]
  6 
  7 jobs:
  8   web-deploy:
  9     name: πŸŽ‰  Deploy
 10     runs-on: ubuntu-latest
 11     steps:
 12     - name: 🚚  Get latest code
 13       uses: actions/checkout@v2.3.2
 14 
 15     - name: Use Node.js 12
 16       uses: actions/setup-node@v2-beta
 17       with:
 18         node-version: '12'
 19 
 20     - name: πŸ”¨  Build Project
 21       run: |
 22         npm install
 23         npm run build --if-present
 24     - name: List output files
 25       run: ls
 26 
 27     - name: πŸ“‚  Sync files
 28       uses: SamKirkland/FTP-Deploy-Action@4.0.0
 29       with:
 30         server: c71762.sgvps.net
 31         server-dir: /eccretreat.org/public_html/wp-content/themes/eccr/
 32         username: web@eccretreat.org
 33         password: ${{ secrets.FTP_PASS }}

My Action Log

2021-05-06T15:04:32.1336164Z ##[section]Starting: Request a runner to run this job
2021-05-06T15:04:32.5022661Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-05-06T15:04:32.5022775Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-05-06T15:04:32.5023172Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-05-06T15:04:32.7023884Z ##[section]Finishing: Request a runner to run this job
2021-05-06T15:04:39.8922329Z Current runner version: '2.278.0'
2021-05-06T15:04:39.8953628Z ##[group]Operating System
2021-05-06T15:04:39.8954689Z Ubuntu
2021-05-06T15:04:39.8955234Z 20.04.2
2021-05-06T15:04:39.8955707Z LTS
2021-05-06T15:04:39.8956296Z ##[endgroup]
2021-05-06T15:04:39.8956953Z ##[group]Virtual Environment
2021-05-06T15:04:39.8957710Z Environment: ubuntu-20.04
2021-05-06T15:04:39.8958370Z Version: 20210504.1
2021-05-06T15:04:39.8959488Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210504.1/images/linux/Ubuntu2004-README.md
2021-05-06T15:04:39.8961073Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20210504.1
2021-05-06T15:04:39.8962111Z ##[endgroup]
2021-05-06T15:04:39.8965826Z ##[group]GITHUB_TOKEN Permissions
2021-05-06T15:04:39.8967317Z Actions: write
2021-05-06T15:04:39.8967966Z Checks: write
2021-05-06T15:04:39.8968615Z Contents: write
2021-05-06T15:04:39.8969214Z Deployments: write
2021-05-06T15:04:39.8969936Z Issues: write
2021-05-06T15:04:39.8970625Z Metadata: read
2021-05-06T15:04:39.8971212Z Packages: write
2021-05-06T15:04:39.8971867Z PullRequests: write
2021-05-06T15:04:39.8972565Z RepositoryProjects: write
2021-05-06T15:04:39.8973341Z SecurityEvents: write
2021-05-06T15:04:39.8974023Z Statuses: write
2021-05-06T15:04:39.8974705Z ##[endgroup]
2021-05-06T15:04:39.8978080Z Prepare workflow directory
2021-05-06T15:04:39.9682832Z Prepare all required actions
2021-05-06T15:04:39.9695237Z Getting action download info
2021-05-06T15:04:40.4090955Z Download action repository 'actions/checkout@v2.3.2'
2021-05-06T15:04:42.3638285Z Download action repository 'actions/setup-node@v2-beta'
2021-05-06T15:04:43.9491654Z Download action repository 'SamKirkland/FTP-Deploy-Action@4.0.0'
2021-05-06T15:04:45.0166365Z ##[group]Run actions/checkout@v2.3.2
2021-05-06T15:04:45.0167047Z with:
2021-05-06T15:04:45.0167550Z   repository: tntmax-dev/eccr
2021-05-06T15:04:45.0168642Z   token: ***
2021-05-06T15:04:45.0169071Z   ssh-strict: true
2021-05-06T15:04:45.0169669Z   persist-credentials: true
2021-05-06T15:04:45.0170210Z   clean: true
2021-05-06T15:04:45.0170641Z   fetch-depth: 1
2021-05-06T15:04:45.0171077Z   lfs: false
2021-05-06T15:04:45.0171516Z   submodules: false
2021-05-06T15:04:45.0171960Z ##[endgroup]
2021-05-06T15:04:45.2776749Z Syncing repository: tntmax-dev/eccr
2021-05-06T15:04:45.2777697Z ##[group]Getting Git version info
2021-05-06T15:04:45.2778603Z Working directory is '/home/runner/work/eccr/eccr'
2021-05-06T15:04:45.2779286Z [command]/usr/bin/git version
2021-05-06T15:04:45.2888192Z git version 2.31.1
2021-05-06T15:04:45.2910818Z ##[endgroup]
2021-05-06T15:04:45.2918334Z Deleting the contents of '/home/runner/work/eccr/eccr'
2021-05-06T15:04:45.2921866Z ##[group]Initializing the repository
2021-05-06T15:04:45.2925854Z [command]/usr/bin/git init /home/runner/work/eccr/eccr
2021-05-06T15:04:45.3002596Z hint: Using 'master' as the name for the initial branch. This default branch name
2021-05-06T15:04:45.3004339Z hint: is subject to change. To configure the initial branch name to use in all
2021-05-06T15:04:45.3005534Z hint: of your new repositories, which will suppress this warning, call:
2021-05-06T15:04:45.3006412Z hint: 
2021-05-06T15:04:45.3007954Z hint:  git config --global init.defaultBranch <name>
2021-05-06T15:04:45.3008617Z hint: 
2021-05-06T15:04:45.3009443Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2021-05-06T15:04:45.3010610Z hint: 'development'. The just-created branch can be renamed via this command:
2021-05-06T15:04:45.3011278Z hint: 
2021-05-06T15:04:45.3011875Z hint:  git branch -m <name>
2021-05-06T15:04:45.3015476Z Initialized empty Git repository in /home/runner/work/eccr/eccr/.git/
2021-05-06T15:04:45.3026928Z [command]/usr/bin/git remote add origin https://github.com/tntmax-dev/eccr
2021-05-06T15:04:45.3074332Z ##[endgroup]
2021-05-06T15:04:45.3075066Z ##[group]Disabling automatic garbage collection
2021-05-06T15:04:45.3082676Z [command]/usr/bin/git config --local gc.auto 0
2021-05-06T15:04:45.3123940Z ##[endgroup]
2021-05-06T15:04:45.3129678Z ##[group]Setting up auth
2021-05-06T15:04:45.3138499Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-05-06T15:04:45.3175140Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-05-06T15:04:45.3582623Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-05-06T15:04:45.3652740Z [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' || :
2021-05-06T15:04:45.3894734Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2021-05-06T15:04:45.3943973Z ##[endgroup]
2021-05-06T15:04:45.3945182Z ##[group]Fetching the repository
2021-05-06T15:04:45.3953692Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +641cac6ccfea4e89dacc2292616b0e158026e627:refs/remotes/origin/master
2021-05-06T15:04:45.6247253Z remote: Enumerating objects: 352, done.        
2021-05-06T15:04:45.6248022Z remote: Counting objects:   0% (1/352)        
2021-05-06T15:04:45.6287299Z remote: Counting objects:   1% (4/352)        
2021-05-06T15:04:45.6289134Z remote: Counting objects:   2% (8/352)        
2021-05-06T15:04:45.6290223Z remote: Counting objects:   3% (11/352)        
2021-05-06T15:04:45.6291272Z remote: Counting objects:   4% (15/352)        
2021-05-06T15:04:45.6292299Z remote: Counting objects:   5% (18/352)        
2021-05-06T15:04:45.6293529Z remote: Counting objects:   6% (22/352)        
2021-05-06T15:04:45.6294447Z remote: Counting objects:   7% (25/352)        
2021-05-06T15:04:45.6295349Z remote: Counting objects:   8% (29/352)        
2021-05-06T15:04:45.6296236Z remote: Counting objects:   9% (32/352)        
2021-05-06T15:04:45.6297082Z remote: Counting objects:  10% (36/352)        
2021-05-06T15:04:45.6297863Z remote: Counting objects:  11% (39/352)        
2021-05-06T15:04:45.6298622Z remote: Counting objects:  12% (43/352)        
2021-05-06T15:04:45.6299384Z remote: Counting objects:  13% (46/352)        
2021-05-06T15:04:45.6300083Z remote: Counting objects:  14% (50/352)        
2021-05-06T15:04:45.6300793Z remote: Counting objects:  15% (53/352)        
2021-05-06T15:04:45.6301472Z remote: Counting objects:  16% (57/352)        
2021-05-06T15:04:45.6302154Z remote: Counting objects:  17% (60/352)        
2021-05-06T15:04:45.6302831Z remote: Counting objects:  18% (64/352)        
2021-05-06T15:04:45.6303498Z remote: Counting objects:  19% (67/352)        
2021-05-06T15:04:45.6304169Z remote: Counting objects:  20% (71/352)        
2021-05-06T15:04:45.6304844Z remote: Counting objects:  21% (74/352)        
2021-05-06T15:04:45.6305499Z remote: Counting objects:  22% (78/352)        
2021-05-06T15:04:45.6306439Z remote: Counting objects:  23% (81/352)        
2021-05-06T15:04:45.6307122Z remote: Counting objects:  24% (85/352)        
2021-05-06T15:04:45.6307811Z remote: Counting objects:  25% (88/352)        
2021-05-06T15:04:45.6308545Z remote: Counting objects:  26% (92/352)        
2021-05-06T15:04:45.6309162Z remote: Counting objects:  27% (96/352)        
2021-05-06T15:04:45.6309790Z remote: Counting objects:  28% (99/352)        
2021-05-06T15:04:45.6310597Z remote: Counting objects:  29% (103/352)        
2021-05-06T15:04:45.6311297Z remote: Counting objects:  30% (106/352)        
2021-05-06T15:04:45.6311896Z remote: Counting objects:  31% (110/352)        
2021-05-06T15:04:45.6312504Z remote: Counting objects:  32% (113/352)        
2021-05-06T15:04:45.6313091Z remote: Counting objects:  33% (117/352)        
2021-05-06T15:04:45.6313676Z remote: Counting objects:  34% (120/352)        
2021-05-06T15:04:45.6314325Z remote: Counting objects:  35% (124/352)        
2021-05-06T15:04:45.6314897Z remote: Counting objects:  36% (127/352)        
2021-05-06T15:04:45.6315637Z remote: Counting objects:  37% (131/352)        
2021-05-06T15:04:45.6316235Z remote: Counting objects:  38% (134/352)        
2021-05-06T15:04:45.6316812Z remote: Counting objects:  39% (138/352)        
2021-05-06T15:04:45.6317403Z remote: Counting objects:  40% (141/352)        
2021-05-06T15:04:45.6317979Z remote: Counting objects:  41% (145/352)        
2021-05-06T15:04:45.6318571Z remote: Counting objects:  42% (148/352)        
2021-05-06T15:04:45.6319160Z remote: Counting objects:  43% (152/352)        
2021-05-06T15:04:45.6319732Z remote: Counting objects:  44% (155/352)        
2021-05-06T15:04:45.6320319Z remote: Counting objects:  45% (159/352)        
2021-05-06T15:04:45.6320918Z remote: Counting objects:  46% (162/352)        
2021-05-06T15:04:45.6321493Z remote: Counting objects:  47% (166/352)        
2021-05-06T15:04:45.6322078Z remote: Counting objects:  48% (169/352)        
2021-05-06T15:04:45.6322665Z remote: Counting objects:  49% (173/352)        
2021-05-06T15:04:45.6323373Z remote: Counting objects:  50% (176/352)        
2021-05-06T15:04:45.6323965Z remote: Counting objects:  51% (180/352)        
2021-05-06T15:04:45.6324566Z remote: Counting objects:  52% (184/352)        
2021-05-06T15:04:45.6325151Z remote: Counting objects:  53% (187/352)        
2021-05-06T15:04:45.6325743Z remote: Counting objects:  54% (191/352)        
2021-05-06T15:04:45.6326334Z remote: Counting objects:  55% (194/352)        
2021-05-06T15:04:45.6326912Z remote: Counting objects:  56% (198/352)        
2021-05-06T15:04:45.6327497Z remote: Counting objects:  57% (201/352)        
2021-05-06T15:04:45.6328065Z remote: Counting objects:  58% (205/352)        
2021-05-06T15:04:45.6328745Z remote: Counting objects:  59% (208/352)        
2021-05-06T15:04:45.6329344Z remote: Counting objects:  60% (212/352)        
2021-05-06T15:04:45.6329921Z remote: Counting objects:  61% (215/352)        
2021-05-06T15:04:45.6330513Z remote: Counting objects:  62% (219/352)        
2021-05-06T15:04:45.6331118Z remote: Counting objects:  63% (222/352)        
2021-05-06T15:04:45.6331961Z remote: Counting objects:  64% (226/352)        
2021-05-06T15:04:45.6332542Z remote: Counting objects:  65% (229/352)        
2021-05-06T15:04:45.6333128Z remote: Counting objects:  66% (233/352)        
2021-05-06T15:04:45.6333723Z remote: Counting objects:  67% (236/352)        
2021-05-06T15:04:45.6334301Z remote: Counting objects:  68% (240/352)        
2021-05-06T15:04:45.6334887Z remote: Counting objects:  69% (243/352)        
2021-05-06T15:04:45.6335475Z remote: Counting objects:  70% (247/352)        
2021-05-06T15:04:45.6336048Z remote: Counting objects:  71% (250/352)        
2021-05-06T15:04:45.6336639Z remote: Counting objects:  72% (254/352)        
2021-05-06T15:04:45.6337210Z remote: Counting objects:  73% (257/352)        
2021-05-06T15:04:45.6337793Z remote: Counting objects:  74% (261/352)        
2021-05-06T15:04:45.6338377Z remote: Counting objects:  75% (264/352)        
2021-05-06T15:04:45.6338951Z remote: Counting objects:  76% (268/352)        
2021-05-06T15:04:45.6339536Z remote: Counting objects:  77% (272/352)        
2021-05-06T15:04:45.6340123Z remote: Counting objects:  78% (275/352)        
2021-05-06T15:04:45.6340692Z remote: Counting objects:  79% (279/352)        
2021-05-06T15:04:45.6341276Z remote: Counting objects:  80% (282/352)        
2021-05-06T15:04:45.6341860Z remote: Counting objects:  81% (286/352)        
2021-05-06T15:04:45.6342428Z remote: Counting objects:  82% (289/352)        
2021-05-06T15:04:45.6343018Z remote: Counting objects:  83% (293/352)        
2021-05-06T15:04:45.6343614Z remote: Counting objects:  84% (296/352)        
2021-05-06T15:04:45.6344203Z remote: Counting objects:  85% (300/352)        
2021-05-06T15:04:45.7823221Z remote: Counting objects:  86% (303/352)        
2021-05-06T15:04:45.7823914Z remote: Counting objects:  87% (307/352)        
2021-05-06T15:04:45.7825036Z remote: Counting objects:  88% (310/352)        
2021-05-06T15:04:45.7826121Z remote: Counting objects:  89% (314/352)        
2021-05-06T15:04:45.7827050Z remote: Counting objects:  90% (317/352)        
2021-05-06T15:04:45.7827871Z remote: Counting objects:  91% (321/352)        
2021-05-06T15:04:45.7828687Z remote: Counting objects:  92% (324/352)        
2021-05-06T15:04:45.7829542Z remote: Counting objects:  93% (328/352)        
2021-05-06T15:04:45.7830388Z remote: Counting objects:  94% (331/352)        
2021-05-06T15:04:45.7831187Z remote: Counting objects:  95% (335/352)        
2021-05-06T15:04:45.7832004Z remote: Counting objects:  96% (338/352)        
2021-05-06T15:04:45.7832766Z remote: Counting objects:  97% (342/352)        
2021-05-06T15:04:45.7833557Z remote: Counting objects:  98% (345/352)        
2021-05-06T15:04:45.7834382Z remote: Counting objects:  99% (349/352)        
2021-05-06T15:04:45.7835150Z remote: Counting objects: 100% (352/352)        
2021-05-06T15:04:45.7835981Z remote: Counting objects: 100% (352/352), done.        
2021-05-06T15:04:45.7836873Z remote: Compressing objects:   0% (1/329)        
2021-05-06T15:04:45.7837703Z remote: Compressing objects:   1% (4/329)        
2021-05-06T15:04:45.7838532Z remote: Compressing objects:   2% (7/329)        
2021-05-06T15:04:45.7839401Z remote: Compressing objects:   3% (10/329)        
2021-05-06T15:04:45.7840231Z remote: Compressing objects:   4% (14/329)        
2021-05-06T15:04:45.7841098Z remote: Compressing objects:   5% (17/329)        
2021-05-06T15:04:45.7841741Z remote: Compressing objects:   6% (20/329)        
2021-05-06T15:04:45.7842377Z remote: Compressing objects:   7% (24/329)        
2021-05-06T15:04:45.7844167Z remote: Compressing objects:   8% (27/329)        
2021-05-06T15:04:45.7844928Z remote: Compressing objects:   9% (30/329)        
2021-05-06T15:04:45.7845574Z remote: Compressing objects:  10% (33/329)        
2021-05-06T15:04:45.7846191Z remote: Compressing objects:  11% (37/329)        
2021-05-06T15:04:45.7846828Z remote: Compressing objects:  12% (40/329)        
2021-05-06T15:04:45.7847871Z remote: Compressing objects:  13% (43/329)        
2021-05-06T15:04:45.7848768Z remote: Compressing objects:  14% (47/329)        
2021-05-06T15:04:45.7849675Z remote: Compressing objects:  15% (50/329)        
2021-05-06T15:04:45.7850490Z remote: Compressing objects:  16% (53/329)        
2021-05-06T15:04:45.7851267Z remote: Compressing objects:  17% (56/329)        
2021-05-06T15:04:45.7852149Z remote: Compressing objects:  18% (60/329)        
2021-05-06T15:04:45.7852993Z remote: Compressing objects:  19% (63/329)        
2021-05-06T15:04:45.7853679Z remote: Compressing objects:  20% (66/329)        
2021-05-06T15:04:45.7854304Z remote: Compressing objects:  21% (70/329)        
2021-05-06T15:04:45.7854948Z remote: Compressing objects:  22% (73/329)        
2021-05-06T15:04:45.7855570Z remote: Compressing objects:  23% (76/329)        
2021-05-06T15:04:45.7856333Z remote: Compressing objects:  24% (79/329)        
2021-05-06T15:04:45.7857103Z remote: Compressing objects:  25% (83/329)        
2021-05-06T15:04:45.7857858Z remote: Compressing objects:  26% (86/329)        
2021-05-06T15:04:45.7858621Z remote: Compressing objects:  27% (89/329)        
2021-05-06T15:04:45.7859384Z remote: Compressing objects:  28% (93/329)        
2021-05-06T15:04:45.7860125Z remote: Compressing objects:  29% (96/329)        
2021-05-06T15:04:45.7860849Z remote: Compressing objects:  30% (99/329)        
2021-05-06T15:04:45.7861615Z remote: Compressing objects:  31% (102/329)        
2021-05-06T15:04:45.7862359Z remote: Compressing objects:  32% (106/329)        
2021-05-06T15:04:45.7863111Z remote: Compressing objects:  33% (109/329)        
2021-05-06T15:04:45.7863877Z remote: Compressing objects:  34% (112/329)        
2021-05-06T15:04:45.7864626Z remote: Compressing objects:  35% (116/329)        
2021-05-06T15:04:45.7865515Z remote: Compressing objects:  36% (119/329)        
2021-05-06T15:04:45.7866273Z remote: Compressing objects:  37% (122/329)        
2021-05-06T15:04:45.7867157Z remote: Compressing objects:  38% (126/329)        
2021-05-06T15:04:45.7867901Z remote: Compressing objects:  39% (129/329)        
2021-05-06T15:04:45.7868670Z remote: Compressing objects:  40% (132/329)        
2021-05-06T15:04:45.7869402Z remote: Compressing objects:  41% (135/329)        
2021-05-06T15:04:45.7870144Z remote: Compressing objects:  42% (139/329)        
2021-05-06T15:04:45.7870912Z remote: Compressing objects:  43% (142/329)        
2021-05-06T15:04:45.7871639Z remote: Compressing objects:  44% (145/329)        
2021-05-06T15:04:45.7872378Z remote: Compressing objects:  45% (149/329)        
2021-05-06T15:04:45.7873135Z remote: Compressing objects:  46% (152/329)        
2021-05-06T15:04:45.7873867Z remote: Compressing objects:  47% (155/329)        
2021-05-06T15:04:45.7874605Z remote: Compressing objects:  48% (158/329)        
2021-05-06T15:04:45.7875373Z remote: Compressing objects:  49% (162/329)        
2021-05-06T15:04:45.7876118Z remote: Compressing objects:  50% (165/329)        
2021-05-06T15:04:45.7876845Z remote: Compressing objects:  51% (168/329)        
2021-05-06T15:04:45.7877606Z remote: Compressing objects:  52% (172/329)        
2021-05-06T15:04:45.7878350Z remote: Compressing objects:  53% (175/329)        
2021-05-06T15:04:45.7879078Z remote: Compressing objects:  54% (178/329)        
2021-05-06T15:04:45.7879839Z remote: Compressing objects:  55% (181/329)        
2021-05-06T15:04:45.7880578Z remote: Compressing objects:  56% (185/329)        
2021-05-06T15:04:45.7881316Z remote: Compressing objects:  57% (188/329)        
2021-05-06T15:04:45.7882128Z remote: Compressing objects:  58% (191/329)        
2021-05-06T15:04:45.7882869Z remote: Compressing objects:  59% (195/329)        
2021-05-06T15:04:45.7884009Z remote: Compressing objects:  60% (198/329)        
2021-05-06T15:04:45.7884788Z remote: Compressing objects:  61% (201/329)        
2021-05-06T15:04:45.7885533Z remote: Compressing objects:  62% (204/329)        
2021-05-06T15:04:45.7886272Z remote: Compressing objects:  63% (208/329)        
2021-05-06T15:04:45.7887019Z remote: Compressing objects:  64% (211/329)        
2021-05-06T15:04:45.7887751Z remote: Compressing objects:  65% (214/329)        
2021-05-06T15:04:45.7888385Z remote: Compressing objects:  66% (218/329)        
2021-05-06T15:04:45.7889019Z remote: Compressing objects:  67% (221/329)        
2021-05-06T15:04:45.7889632Z remote: Compressing objects:  68% (224/329)        
2021-05-06T15:04:45.7890262Z remote: Compressing objects:  69% (228/329)        
2021-05-06T15:04:45.7890878Z remote: Compressing objects:  70% (231/329)        
2021-05-06T15:04:45.7891512Z remote: Compressing objects:  71% (234/329)        
2021-05-06T15:04:45.7892157Z remote: Compressing objects:  72% (237/329)        
2021-05-06T15:04:45.7892777Z remote: Compressing objects:  73% (241/329)        
2021-05-06T15:04:45.7893410Z remote: Compressing objects:  74% (244/329)        
2021-05-06T15:04:45.7894039Z remote: Compressing objects:  75% (247/329)        
2021-05-06T15:04:45.7894657Z remote: Compressing objects:  76% (251/329)        
2021-05-06T15:04:45.7895289Z remote: Compressing objects:  77% (254/329)        
2021-05-06T15:04:45.7895920Z remote: Compressing objects:  78% (257/329)        
2021-05-06T15:04:45.7896533Z remote: Compressing objects:  79% (260/329)        
2021-05-06T15:04:45.7897160Z remote: Compressing objects:  80% (264/329)        
2021-05-06T15:04:45.7897787Z remote: Compressing objects:  81% (267/329)        
2021-05-06T15:04:45.7898402Z remote: Compressing objects:  82% (270/329)        
2021-05-06T15:04:45.7899036Z remote: Compressing objects:  83% (274/329)        
2021-05-06T15:04:45.7899668Z remote: Compressing objects:  84% (277/329)        
2021-05-06T15:04:45.7900463Z remote: Compressing objects:  85% (280/329)        
2021-05-06T15:04:45.8318401Z remote: Compressing objects:  86% (283/329)        
2021-05-06T15:04:45.8319357Z remote: Compressing objects:  87% (287/329)        
2021-05-06T15:04:45.8320105Z remote: Compressing objects:  88% (290/329)        
2021-05-06T15:04:45.8321179Z remote: Compressing objects:  89% (293/329)        
2021-05-06T15:04:45.8322132Z remote: Compressing objects:  90% (297/329)        
2021-05-06T15:04:45.8322842Z remote: Compressing objects:  91% (300/329)        
2021-05-06T15:04:45.8323736Z remote: Compressing objects:  92% (303/329)        
2021-05-06T15:04:45.8324469Z remote: Compressing objects:  93% (306/329)        
2021-05-06T15:04:45.8325181Z remote: Compressing objects:  94% (310/329)        
2021-05-06T15:04:45.8325917Z remote: Compressing objects:  95% (313/329)        
2021-05-06T15:04:45.8326643Z remote: Compressing objects:  96% (316/329)        
2021-05-06T15:04:45.8327369Z remote: Compressing objects:  97% (320/329)        
2021-05-06T15:04:45.8328157Z remote: Compressing objects:  98% (323/329)        
2021-05-06T15:04:45.8328878Z remote: Compressing objects:  99% (326/329)        
2021-05-06T15:04:45.8329603Z remote: Compressing objects: 100% (329/329)        
2021-05-06T15:04:45.8330301Z remote: Compressing objects: 100% (329/329), done.        
2021-05-06T15:04:45.8380403Z Receiving objects:   0% (1/352)
2021-05-06T15:04:45.8381044Z Receiving objects:   1% (4/352)
2021-05-06T15:04:45.8381701Z Receiving objects:   2% (8/352)
2021-05-06T15:04:45.8382314Z Receiving objects:   3% (11/352)
2021-05-06T15:04:45.8382939Z Receiving objects:   4% (15/352)
2021-05-06T15:04:45.8383557Z Receiving objects:   5% (18/352)
2021-05-06T15:04:45.8384179Z Receiving objects:   6% (22/352)
2021-05-06T15:04:45.8384777Z Receiving objects:   7% (25/352)
2021-05-06T15:04:45.8385394Z Receiving objects:   8% (29/352)
2021-05-06T15:04:45.8386008Z Receiving objects:   9% (32/352)
2021-05-06T15:04:45.8386605Z Receiving objects:  10% (36/352)
2021-05-06T15:04:45.8387461Z Receiving objects:  11% (39/352)
2021-05-06T15:04:45.8388089Z Receiving objects:  12% (43/352)
2021-05-06T15:04:45.8388687Z Receiving objects:  13% (46/352)
2021-05-06T15:04:45.8389330Z Receiving objects:  14% (50/352)
2021-05-06T15:04:45.8389947Z Receiving objects:  15% (53/352)
2021-05-06T15:04:45.8390555Z Receiving objects:  16% (57/352)
2021-05-06T15:04:45.8391170Z Receiving objects:  17% (60/352)
2021-05-06T15:04:45.8391781Z Receiving objects:  18% (64/352)
2021-05-06T15:04:45.8392393Z Receiving objects:  19% (67/352)
2021-05-06T15:04:45.8392993Z Receiving objects:  20% (71/352)
2021-05-06T15:04:45.8393605Z Receiving objects:  21% (74/352)
2021-05-06T15:04:45.8394227Z Receiving objects:  22% (78/352)
2021-05-06T15:04:45.8394822Z Receiving objects:  23% (81/352)
2021-05-06T15:04:45.8395437Z Receiving objects:  24% (85/352)
2021-05-06T15:04:45.8396047Z Receiving objects:  25% (88/352)
2021-05-06T15:04:45.8396648Z Receiving objects:  26% (92/352)
2021-05-06T15:04:45.8397263Z Receiving objects:  27% (96/352)
2021-05-06T15:04:45.8397871Z Receiving objects:  28% (99/352)
2021-05-06T15:04:45.8398476Z Receiving objects:  29% (103/352)
2021-05-06T15:04:45.8399095Z Receiving objects:  30% (106/352)
2021-05-06T15:04:45.8399706Z Receiving objects:  31% (110/352)
2021-05-06T15:04:45.8400323Z Receiving objects:  32% (113/352)
2021-05-06T15:04:45.8400915Z Receiving objects:  33% (117/352)
2021-05-06T15:04:45.8401528Z Receiving objects:  34% (120/352)
2021-05-06T15:04:45.8402136Z Receiving objects:  35% (124/352)
2021-05-06T15:04:45.8402731Z Receiving objects:  36% (127/352)
2021-05-06T15:04:45.8403531Z Receiving objects:  37% (131/352)
2021-05-06T15:04:45.8404147Z Receiving objects:  38% (134/352)
2021-05-06T15:04:45.8404750Z Receiving objects:  39% (138/352)
2021-05-06T15:04:45.8405359Z Receiving objects:  40% (141/352)
2021-05-06T15:04:45.8405970Z Receiving objects:  41% (145/352)
2021-05-06T15:04:45.8406568Z Receiving objects:  42% (148/352)
2021-05-06T15:04:45.8407177Z Receiving objects:  43% (152/352)
2021-05-06T15:04:45.8407839Z Receiving objects:  44% (155/352)
2021-05-06T15:04:45.8408450Z Receiving objects:  45% (159/352)
2021-05-06T15:04:45.8409045Z Receiving objects:  46% (162/352)
2021-05-06T15:04:45.8409652Z Receiving objects:  47% (166/352)
2021-05-06T15:04:45.8410257Z Receiving objects:  48% (169/352)
2021-05-06T15:04:45.8411004Z Receiving objects:  49% (173/352)
2021-05-06T15:04:45.8411616Z Receiving objects:  50% (176/352)
2021-05-06T15:04:45.8412233Z Receiving objects:  51% (180/352)
2021-05-06T15:04:45.8412835Z Receiving objects:  52% (184/352)
2021-05-06T15:04:45.8413451Z Receiving objects:  53% (187/352)
2021-05-06T15:04:45.8414058Z Receiving objects:  54% (191/352)
2021-05-06T15:04:45.8414657Z Receiving objects:  55% (194/352)
2021-05-06T15:04:45.8415284Z Receiving objects:  56% (198/352)
2021-05-06T15:04:45.8415897Z Receiving objects:  57% (201/352)
2021-05-06T15:04:45.8416506Z Receiving objects:  58% (205/352)
2021-05-06T15:04:45.8417100Z Receiving objects:  59% (208/352)
2021-05-06T15:04:45.8417715Z Receiving objects:  60% (212/352)
2021-05-06T15:04:45.8418326Z Receiving objects:  61% (215/352)
2021-05-06T15:04:45.8418922Z Receiving objects:  62% (219/352)
2021-05-06T15:04:45.8419536Z Receiving objects:  63% (222/352)
2021-05-06T15:04:45.8420227Z Receiving objects:  64% (226/352)
2021-05-06T15:04:45.8420742Z Receiving objects:  65% (229/352)
2021-05-06T15:04:45.8421361Z Receiving objects:  66% (233/352)
2021-05-06T15:04:45.8421969Z Receiving objects:  67% (236/352)
2021-05-06T15:04:45.8422563Z Receiving objects:  68% (240/352)
2021-05-06T15:04:45.8423171Z Receiving objects:  69% (243/352)
2021-05-06T15:04:45.8423781Z Receiving objects:  70% (247/352)
2021-05-06T15:04:45.8424390Z Receiving objects:  71% (250/352)
2021-05-06T15:04:45.8424980Z Receiving objects:  72% (254/352)
2021-05-06T15:04:45.8425591Z Receiving objects:  73% (257/352)
2021-05-06T15:04:45.8426204Z Receiving objects:  74% (261/352)
2021-05-06T15:04:45.8426800Z Receiving objects:  75% (264/352)
2021-05-06T15:04:45.8427514Z Receiving objects:  76% (268/352)
2021-05-06T15:04:45.8428134Z Receiving objects:  77% (272/352)
2021-05-06T15:04:45.8428734Z Receiving objects:  78% (275/352)
2021-05-06T15:04:45.8429345Z Receiving objects:  79% (279/352)
2021-05-06T15:04:45.8430019Z Receiving objects:  80% (282/352)
2021-05-06T15:04:45.8430620Z Receiving objects:  81% (286/352)
2021-05-06T15:04:45.8431224Z Receiving objects:  82% (289/352)
2021-05-06T15:04:45.8432033Z Receiving objects:  83% (293/352)
2021-05-06T15:04:45.8432880Z Receiving objects:  84% (296/352)
2021-05-06T15:04:45.8443803Z Receiving objects:  85% (300/352)
2021-05-06T15:04:45.8444332Z Receiving objects:  86% (303/352)
2021-05-06T15:04:45.8444971Z Receiving objects:  87% (307/352)
2021-05-06T15:04:45.8445571Z Receiving objects:  88% (310/352)
2021-05-06T15:04:45.8446186Z Receiving objects:  89% (314/352)
2021-05-06T15:04:45.8446801Z Receiving objects:  90% (317/352)
2021-05-06T15:04:45.8447399Z Receiving objects:  91% (321/352)
2021-05-06T15:04:45.8451862Z Receiving objects:  92% (324/352)
2021-05-06T15:04:45.8452390Z Receiving objects:  93% (328/352)
2021-05-06T15:04:45.8453006Z Receiving objects:  94% (331/352)
2021-05-06T15:04:45.8454410Z remote: Total 352 (delta 41), reused 218 (delta 13), pack-reused 0        
2021-05-06T15:04:45.8455179Z Receiving objects:  95% (335/352)
2021-05-06T15:04:45.8455819Z Receiving objects:  96% (338/352)
2021-05-06T15:04:45.8456417Z Receiving objects:  97% (342/352)
2021-05-06T15:04:45.8457043Z Receiving objects:  98% (345/352)
2021-05-06T15:04:45.8457659Z Receiving objects:  99% (349/352)
2021-05-06T15:04:45.8458259Z Receiving objects: 100% (352/352)
2021-05-06T15:04:45.8458963Z Receiving objects: 100% (352/352), 1.37 MiB | 26.93 MiB/s, done.
2021-05-06T15:04:45.8459653Z Resolving deltas:   0% (0/41)
2021-05-06T15:04:45.8460244Z Resolving deltas:   2% (1/41)
2021-05-06T15:04:45.8460840Z Resolving deltas:   4% (2/41)
2021-05-06T15:04:45.8461427Z Resolving deltas:   7% (3/41)
2021-05-06T15:04:45.8461918Z Resolving deltas:   9% (4/41)
2021-05-06T15:04:45.8462523Z Resolving deltas:  12% (5/41)
2021-05-06T15:04:45.8463119Z Resolving deltas:  14% (6/41)
2021-05-06T15:04:45.8463713Z Resolving deltas:  17% (7/41)
2021-05-06T15:04:45.8464297Z Resolving deltas:  19% (8/41)
2021-05-06T15:04:45.8464886Z Resolving deltas:  21% (9/41)
2021-05-06T15:04:45.8465645Z Resolving deltas:  24% (10/41)
2021-05-06T15:04:45.8466231Z Resolving deltas:  26% (11/41)
2021-05-06T15:04:45.8466826Z Resolving deltas:  29% (12/41)
2021-05-06T15:04:45.8467422Z Resolving deltas:  31% (13/41)
2021-05-06T15:04:45.8468007Z Resolving deltas:  34% (14/41)
2021-05-06T15:04:45.8468603Z Resolving deltas:  36% (15/41)
2021-05-06T15:04:45.8469193Z Resolving deltas:  39% (16/41)
2021-05-06T15:04:45.8469768Z Resolving deltas:  41% (17/41)
2021-05-06T15:04:45.8470361Z Resolving deltas:  43% (18/41)
2021-05-06T15:04:45.8470991Z Resolving deltas:  46% (19/41)
2021-05-06T15:04:45.8471584Z Resolving deltas:  48% (20/41)
2021-05-06T15:04:45.8472169Z Resolving deltas:  51% (21/41)
2021-05-06T15:04:45.8472771Z Resolving deltas:  53% (22/41)
2021-05-06T15:04:45.8473369Z Resolving deltas:  56% (23/41)
2021-05-06T15:04:45.8473950Z Resolving deltas:  58% (24/41)
2021-05-06T15:04:45.8474544Z Resolving deltas:  60% (25/41)
2021-05-06T15:04:45.8475143Z Resolving deltas:  63% (26/41)
2021-05-06T15:04:45.8475727Z Resolving deltas:  65% (27/41)
2021-05-06T15:04:45.8476322Z Resolving deltas:  68% (28/41)
2021-05-06T15:04:45.8476915Z Resolving deltas:  70% (29/41)
2021-05-06T15:04:45.8477491Z Resolving deltas:  73% (30/41)
2021-05-06T15:04:45.8478088Z Resolving deltas:  75% (31/41)
2021-05-06T15:04:45.8478682Z Resolving deltas:  78% (32/41)
2021-05-06T15:04:45.8479277Z Resolving deltas:  80% (33/41)
2021-05-06T15:04:45.8479855Z Resolving deltas:  82% (34/41)
2021-05-06T15:04:45.8480452Z Resolving deltas:  85% (35/41)
2021-05-06T15:04:45.8481046Z Resolving deltas:  87% (36/41)
2021-05-06T15:04:45.8481625Z Resolving deltas:  90% (37/41)
2021-05-06T15:04:45.8482222Z Resolving deltas:  92% (38/41)
2021-05-06T15:04:45.8483645Z Resolving deltas:  95% (39/41)
2021-05-06T15:04:45.8514920Z Resolving deltas:  97% (40/41)
2021-05-06T15:04:45.8515919Z Resolving deltas: 100% (41/41)
2021-05-06T15:04:45.8516465Z Resolving deltas: 100% (41/41), done.
2021-05-06T15:04:45.8517581Z From https://github.com/tntmax-dev/eccr
2021-05-06T15:04:45.8518842Z  * [new ref]         641cac6ccfea4e89dacc2292616b0e158026e627 -> origin/master
2021-05-06T15:04:45.8520094Z ##[endgroup]
2021-05-06T15:04:45.8520878Z ##[group]Determining the checkout info
2021-05-06T15:04:45.8521430Z ##[endgroup]
2021-05-06T15:04:45.8522130Z ##[group]Checking out the ref
2021-05-06T15:04:45.8523500Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2021-05-06T15:04:45.8524534Z Reset branch 'master'
2021-05-06T15:04:45.8525494Z Branch 'master' set up to track remote branch 'master' from 'origin'.
2021-05-06T15:04:45.8526231Z ##[endgroup]
2021-05-06T15:04:45.8526964Z [command]/usr/bin/git log -1
2021-05-06T15:04:45.8527846Z commit 641cac6ccfea4e89dacc2292616b0e158026e627
2021-05-06T15:04:45.8529163Z Author: tntmax-dev <47400088+tntmax-dev@users.noreply.github.com>
2021-05-06T15:04:45.8530182Z Date:   Thu May 6 11:04:29 2021 -0400
2021-05-06T15:04:45.8530591Z 
2021-05-06T15:04:45.8531287Z     Update ftp-deploy... again
2021-05-06T15:04:45.8675099Z ##[group]Run actions/setup-node@v2-beta
2021-05-06T15:04:45.8675638Z with:
2021-05-06T15:04:45.8676064Z   node-version: 12
2021-05-06T15:04:45.8676536Z   always-auth: false
2021-05-06T15:04:45.8677045Z   check-latest: false
2021-05-06T15:04:45.8678057Z   token: ***
2021-05-06T15:04:45.8678464Z ##[endgroup]
2021-05-06T15:04:45.9849428Z Found in cache @ /opt/hostedtoolcache/node/12.22.1/x64
2021-05-06T15:04:45.9929500Z ##[group]Run npm install
2021-05-06T15:04:45.9930185Z npm install
2021-05-06T15:04:45.9930788Z npm run build --if-present
2021-05-06T15:04:45.9976310Z shell: /usr/bin/bash -e {0}
2021-05-06T15:04:45.9976925Z ##[endgroup]
2021-05-06T15:05:22.4809309Z 
2021-05-06T15:05:22.4813462Z > node-sass@4.14.1 install /home/runner/work/eccr/eccr/node_modules/node-sass
2021-05-06T15:05:22.4814890Z > node scripts/install.js
2021-05-06T15:05:22.4815602Z 
2021-05-06T15:05:23.3559729Z Downloading binary from https://github.com/sass/node-sass/releases/download/v4.14.1/linux-x64-72_binding.node
2021-05-06T15:05:23.4344373Z Download complete
2021-05-06T15:05:23.4386282Z Binary saved to /home/runner/work/eccr/eccr/node_modules/node-sass/vendor/linux-x64-72/binding.node
2021-05-06T15:05:23.4839998Z Caching binary to /home/runner/.npm/node-sass/4.14.1/linux-x64-72_binding.node
2021-05-06T15:05:23.6225944Z 
2021-05-06T15:05:23.6230280Z > core-js@3.2.1 postinstall /home/runner/work/eccr/eccr/node_modules/core-js
2021-05-06T15:05:23.6232557Z > node scripts/postinstall || echo "ignore"
2021-05-06T15:05:23.6233737Z 
2021-05-06T15:05:23.6734372Z 
2021-05-06T15:05:23.6737008Z > core-js-pure@3.6.5 postinstall /home/runner/work/eccr/eccr/node_modules/core-js-pure
2021-05-06T15:05:23.6738599Z > node -e "try{require('./postinstall')}catch(e){}"
2021-05-06T15:05:23.6739293Z 
2021-05-06T15:05:23.9560841Z 
2021-05-06T15:05:23.9563162Z > node-sass@4.14.1 postinstall /home/runner/work/eccr/eccr/node_modules/node-sass
2021-05-06T15:05:23.9565583Z > node scripts/build.js
2021-05-06T15:05:23.9566044Z 
2021-05-06T15:05:24.1067618Z Binary found at /home/runner/work/eccr/eccr/node_modules/node-sass/vendor/linux-x64-72/binding.node
2021-05-06T15:05:24.1068606Z Testing binary
2021-05-06T15:05:24.2145425Z Binary is fine
2021-05-06T15:05:24.2278870Z 
2021-05-06T15:05:24.2280970Z > gifsicle@5.0.0 postinstall /home/runner/work/eccr/eccr/node_modules/gifsicle
2021-05-06T15:05:24.2281754Z > node lib/install.js
2021-05-06T15:05:24.2282117Z 
2021-05-06T15:05:24.4516774Z   ⚠ Response code 404 (Not Found)
2021-05-06T15:05:24.4520714Z   ⚠ gifsicle pre-build test failed
2021-05-06T15:05:24.4525429Z   β„Ή compiling from source
2021-05-06T15:05:42.1725851Z   βœ” gifsicle built successfully
2021-05-06T15:05:42.1811869Z 
2021-05-06T15:05:42.1813099Z > mozjpeg@6.0.1 postinstall /home/runner/work/eccr/eccr/node_modules/mozjpeg
2021-05-06T15:05:42.1813945Z > node lib/install.js
2021-05-06T15:05:42.1814302Z 
2021-05-06T15:05:42.4795653Z   βœ” mozjpeg pre-build test passed successfully
2021-05-06T15:05:42.4891126Z 
2021-05-06T15:05:42.4893588Z > optipng-bin@6.0.0 postinstall /home/runner/work/eccr/eccr/node_modules/optipng-bin
2021-05-06T15:05:42.4924136Z > node lib/install.js
2021-05-06T15:05:42.4925029Z 
2021-05-06T15:05:42.7445116Z   βœ” optipng pre-build test passed successfully
2021-05-06T15:05:43.8752828Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.9 (node_modules/fsevents):
2021-05-06T15:05:43.8761137Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2021-05-06T15:05:43.8762768Z 
2021-05-06T15:05:43.8806219Z added 1399 packages from 776 contributors and audited 1468 packages in 42.666s
2021-05-06T15:05:44.5990821Z 
2021-05-06T15:05:44.5992252Z 43 packages are looking for funding
2021-05-06T15:05:44.5993106Z   run `npm fund` for details
2021-05-06T15:05:44.5993642Z 
2021-05-06T15:05:44.6003285Z found 333 vulnerabilities (286 low, 1 moderate, 46 high)
2021-05-06T15:05:44.6004482Z   run `npm audit fix` to fix them, or `npm audit` for details
2021-05-06T15:05:44.9386444Z 
2021-05-06T15:05:44.9388914Z > Ignition@1.0.0 build /home/runner/work/eccr/eccr
2021-05-06T15:05:44.9390667Z > gulp build
2021-05-06T15:05:44.9397453Z 
2021-05-06T15:05:45.2612700Z [15:05:45] Requiring external module @babel/register
2021-05-06T15:05:47.0289028Z Browserslist: caniuse-lite is outdated. Please run next command `npm update`
2021-05-06T15:05:47.1692089Z [15:05:47] Using gulpfile ~/work/eccr/eccr/gulpfile.babel.js
2021-05-06T15:05:47.1702689Z [15:05:47] Starting 'build'...
2021-05-06T15:05:47.1717113Z [15:05:47] Starting 'templatePartStyles'...
2021-05-06T15:05:47.2529960Z [15:05:47] Finished 'templatePartStyles' after 81 ms
2021-05-06T15:05:47.2542776Z [15:05:47] Starting 'styles'...
2021-05-06T15:05:53.8114224Z [15:05:53] gulp-notify: [Gulp notification] 
2021-05-06T15:05:53.8141647Z 
2021-05-06T15:05:53.8143362Z βœ…  ===> STYLES β€” completed!
2021-05-06T15:05:53.8144424Z 
2021-05-06T15:05:53.8146663Z [15:05:53] gulp-notify: [Error in notifier] Error in plugin "gulp-notify"
2021-05-06T15:05:53.8148228Z Message:
2021-05-06T15:05:53.8149297Z     not found: notify-send
2021-05-06T15:05:53.8150059Z Details:
2021-05-06T15:05:53.8150751Z     code: ENOENT
2021-05-06T15:05:53.8151555Z 
2021-05-06T15:05:53.8152653Z [15:05:53] Finished 'styles' after 6.56 s
2021-05-06T15:05:53.8154116Z [15:05:53] Starting 'deleteTemplateParts'...
2021-05-06T15:05:53.8203996Z [15:05:53] Finished 'deleteTemplateParts' after 6 ms
2021-05-06T15:05:53.8205497Z [15:05:53] Starting 'vendorsJS'...
2021-05-06T15:05:53.8284928Z [15:05:53] Finished 'vendorsJS' after 7.79 ms
2021-05-06T15:05:53.8285784Z [15:05:53] Starting 'customJS'...
2021-05-06T15:05:54.0255449Z Browserslist: caniuse-lite is outdated. Please run:
2021-05-06T15:05:54.0256506Z npx browserslist@latest --update-db
2021-05-06T15:05:54.8935277Z [15:05:54] gulp-notify: [Gulp notification] 
2021-05-06T15:05:54.8936287Z 
2021-05-06T15:05:54.8937291Z βœ…  ===> CUSTOM JS β€” completed!
2021-05-06T15:05:54.8938182Z 
2021-05-06T15:05:54.8939614Z [15:05:54] gulp-notify: [Error in notifier] Error in plugin "gulp-notify"
2021-05-06T15:05:54.8940580Z Message:
2021-05-06T15:05:54.8941633Z     notify-send must be installed on the system.
2021-05-06T15:05:54.8942848Z [15:05:54] Finished 'customJS' after 1.07 s
2021-05-06T15:05:54.8943874Z [15:05:54] Starting 'noConcatJS'...
2021-05-06T15:05:55.2465454Z [15:05:55] gulp-notify: [Gulp notification] 
2021-05-06T15:05:55.2466409Z 
2021-05-06T15:05:55.2468163Z βœ…  ===> No Concat JS β€” completed!
2021-05-06T15:05:55.2468881Z 
2021-05-06T15:05:55.2475966Z [15:05:55] gulp-notify: [Error in notifier] Error in plugin "gulp-notify"
2021-05-06T15:05:55.2476963Z Message:
2021-05-06T15:05:55.2478313Z     notify-send must be installed on the system.
2021-05-06T15:05:55.2490688Z [15:05:55] Finished 'noConcatJS' after 354 ms
2021-05-06T15:05:55.2492341Z [15:05:55] Starting 'images'...
2021-05-06T15:05:55.4175797Z [15:05:55] gulp-imagemin: Minified 0 images
2021-05-06T15:05:55.4182952Z [15:05:55] Finished 'images' after 169 ms
2021-05-06T15:05:55.4185551Z [15:05:55] Finished 'build' after 8.25 s
2021-05-06T15:05:55.4608138Z ##[group]Run ls
2021-05-06T15:05:55.4608625Z ls
2021-05-06T15:05:55.4650457Z shell: /usr/bin/bash -e {0}
2021-05-06T15:05:55.4650919Z ##[endgroup]
2021-05-06T15:05:55.4737235Z 404.php
2021-05-06T15:05:55.4737731Z LICENSE
2021-05-06T15:05:55.4738165Z README.md
2021-05-06T15:05:55.4739097Z acf-json
2021-05-06T15:05:55.4739788Z archive-eccr_jobs.php
2021-05-06T15:05:55.4740612Z archive-eccr_newsletter.php
2021-05-06T15:05:55.4741443Z archive-galleries.php
2021-05-06T15:05:55.4741991Z assets
2021-05-06T15:05:55.4742443Z changelog.md
2021-05-06T15:05:55.4742966Z comments.php
2021-05-06T15:05:55.4743388Z dist
2021-05-06T15:05:55.4743815Z footer.php
2021-05-06T15:05:55.4744343Z functions.php
2021-05-06T15:05:55.4744899Z gulpfile.babel.js
2021-05-06T15:05:55.4745425Z header.php
2021-05-06T15:05:55.4745876Z home.php
2021-05-06T15:05:55.4746270Z inc
2021-05-06T15:05:55.4746668Z index.php
2021-05-06T15:05:55.4747108Z languages
2021-05-06T15:05:55.4747555Z node_modules
2021-05-06T15:05:55.4748333Z package-lock.json
2021-05-06T15:05:55.4748870Z package.json
2021-05-06T15:05:55.4749550Z page-updates.php
2021-05-06T15:05:55.4750063Z page.php
2021-05-06T15:05:55.4750551Z screenshot.png
2021-05-06T15:05:55.4751034Z search.php
2021-05-06T15:05:55.4751538Z searchform.php
2021-05-06T15:05:55.4752226Z sidebar-left.php
2021-05-06T15:05:55.4752934Z sidebar-right.php
2021-05-06T15:05:55.4753477Z sidebar.php
2021-05-06T15:05:55.4753950Z single.php
2021-05-06T15:05:55.4754387Z style.css
2021-05-06T15:05:55.4755009Z template-parts
2021-05-06T15:05:55.4755572Z wpgulp.config.js
2021-05-06T15:05:55.4828686Z ##[group]Run SamKirkland/FTP-Deploy-Action@4.0.0
2021-05-06T15:05:55.4829388Z with:
2021-05-06T15:05:55.4829840Z   server: c71762.sgvps.net
2021-05-06T15:05:55.4830575Z   server-dir: /eccretreat.org/public_html/wp-content/themes/eccr/
2021-05-06T15:05:55.4831334Z   username: web@eccretreat.org
2021-05-06T15:05:55.4832293Z   password: ***
2021-05-06T15:05:55.4832731Z ##[endgroup]
2021-05-06T15:05:55.5373265Z ----------------------------------------------------------------
2021-05-06T15:05:55.5381414Z πŸš€ Thanks for using ftp-deploy. Let's deploy some stuff!   
2021-05-06T15:05:55.5382504Z ----------------------------------------------------------------
2021-05-06T15:05:55.5383342Z If you found this project helpful, please support it
2021-05-06T15:05:55.5384649Z by giving it a ⭐ on Github --> https://github.com/SamKirkland/FTP-Deploy-Action
2021-05-06T15:05:55.5386282Z or add a badge 🏷️ to your projects readme --> https://github.com/SamKirkland/FTP-Deploy-Action#badge
2021-05-06T15:05:57.4979573Z ----------------------------------------------------------------
2021-05-06T15:05:57.4981999Z No file exists on the server "/eccretreat.org/public_html/wp-content/themes/eccr/.ftp-deploy-sync-state.json" - this much be your first publish! πŸŽ‰
2021-05-06T15:05:57.4983841Z The first publish will take a while... but once the initial sync is done only differences are published!
2021-05-06T15:05:57.4985124Z If you get this message and its NOT your first publish, something is wrong.
2021-05-06T15:05:57.5029633Z ----------------------------------------------------------------
2021-05-06T15:05:57.6450164Z Local Files:   369
2021-05-06T15:05:57.6451116Z Server Files:  369
2021-05-06T15:05:57.6452573Z ----------------------------------------------------------------
2021-05-06T15:05:57.6454928Z Calculating differences between client & server
2021-05-06T15:05:57.6456218Z ----------------------------------------------------------------
2021-05-06T15:05:57.6457220Z βž• Upload: .editorconfig
2021-05-06T15:05:57.6458215Z βž• Upload: .eslintignore
2021-05-06T15:05:57.6459192Z βž• Upload: .eslintrc.js
2021-05-06T15:05:57.6460169Z βž• Upload: 404.php
2021-05-06T15:05:57.6461088Z πŸ“ Create: acf-json
2021-05-06T15:05:57.6462070Z βž• Upload: acf-json/group_5b46727696780.json
2021-05-06T15:05:57.6463092Z βž• Upload: acf-json/group_5d71340447ff4.json
2021-05-06T15:05:57.6464114Z βž• Upload: acf-json/group_5d791b896aad1.json
2021-05-06T15:05:57.6465863Z βž• Upload: acf-json/group_5d80e2fef10d2.json
2021-05-06T15:05:57.6470584Z βž• Upload: acf-json/group_5d8d13dd011ba.json
2021-05-06T15:05:57.6471510Z βž• Upload: acf-json/group_5e7257082314f.json
2021-05-06T15:05:57.6472395Z βž• Upload: acf-json/group_5ea9964b50016.json
2021-05-06T15:05:57.6473306Z βž• Upload: acf-json/group_5eaaeb7fd7a96.json
2021-05-06T15:05:57.6474250Z βž• Upload: acf-json/group_5eac3b0153c3f.json
2021-05-06T15:05:57.6475187Z βž• Upload: acf-json/group_5eb07b17e4bfe.json
2021-05-06T15:05:57.6476086Z βž• Upload: acf-json/group_5eb2c9438021a.json
2021-05-06T15:05:57.6477035Z βž• Upload: acf-json/group_5eb2d569c2a60.json
2021-05-06T15:05:57.6477960Z βž• Upload: acf-json/group_5eb44e3e81587.json
2021-05-06T15:05:57.6478892Z βž• Upload: acf-json/group_5eb4510349cb0.json
2021-05-06T15:05:57.6479810Z βž• Upload: acf-json/group_5eb46a4b9fa26.json
2021-05-06T15:05:57.6480734Z βž• Upload: acf-json/group_5eb5a65b22621.json
2021-05-06T15:05:57.6481635Z βž• Upload: acf-json/group_5ebc0f0105914.json
2021-05-06T15:05:57.6482525Z βž• Upload: acf-json/group_5ebc15803f968.json
2021-05-06T15:05:57.6483589Z βž• Upload: acf-json/group_5ebebbd46197b.json
2021-05-06T15:05:57.6484538Z βž• Upload: acf-json/group_5ebed657be5b1.json
2021-05-06T15:05:57.6485468Z βž• Upload: acf-json/group_5ec3e96a9a30b.json
2021-05-06T15:05:57.6486407Z βž• Upload: acf-json/group_5ecffb343aa86.json
2021-05-06T15:05:57.6487326Z βž• Upload: acf-json/group_5ef375d654c81.json
2021-05-06T15:05:57.6488190Z βž• Upload: archive-eccr_jobs.php
2021-05-06T15:05:57.6489085Z βž• Upload: archive-eccr_newsletter.php
2021-05-06T15:05:57.6490026Z βž• Upload: archive-galleries.php
2021-05-06T15:05:57.6491134Z πŸ“ Create: assets
2021-05-06T15:05:57.6491825Z πŸ“ Create: assets/icons
2021-05-06T15:05:57.6492894Z βž• Upload: assets/icons/demo-external-svg.html
2021-05-06T15:05:57.6493844Z πŸ“ Create: assets/icons/demo-files
2021-05-06T15:05:57.6496405Z βž• Upload: assets/icons/demo-files/demo.css
2021-05-06T15:05:57.6502091Z βž• Upload: assets/icons/demo.html
2021-05-06T15:05:57.6506140Z βž• Upload: assets/icons/Read Me.txt
2021-05-06T15:05:57.6513148Z βž• Upload: assets/icons/selection.json
2021-05-06T15:05:57.6514759Z βž• Upload: assets/icons/style.css
2021-05-06T15:05:57.6515792Z πŸ“ Create: assets/icons/SVG
2021-05-06T15:05:57.6517247Z βž• Upload: assets/icons/SVG/amazon.svg
2021-05-06T15:05:57.6518389Z βž• Upload: assets/icons/SVG/angle-down.svg
2021-05-06T15:05:57.6520272Z βž• Upload: assets/icons/SVG/angle-left.svg
2021-05-06T15:05:57.6521790Z βž• Upload: assets/icons/SVG/angle-right.svg
2021-05-06T15:05:57.6564398Z βž• Upload: assets/icons/SVG/angle-up.svg
2021-05-06T15:05:57.6565558Z βž• Upload: assets/icons/SVG/appleinc.svg
2021-05-06T15:05:57.6566599Z βž• Upload: assets/icons/SVG/arrow-circle-down.svg
2021-05-06T15:05:57.6567713Z βž• Upload: assets/icons/SVG/arrow-circle-left.svg
2021-05-06T15:05:57.6568816Z βž• Upload: assets/icons/SVG/arrow-circle-o-down.svg
2021-05-06T15:05:57.6569954Z βž• Upload: assets/icons/SVG/arrow-circle-o-left.svg
2021-05-06T15:05:57.6571110Z βž• Upload: assets/icons/SVG/arrow-circle-o-right.svg
2021-05-06T15:05:57.6572228Z βž• Upload: assets/icons/SVG/arrow-circle-o-up.svg
2021-05-06T15:05:57.6573332Z βž• Upload: assets/icons/SVG/arrow-circle-right.svg
2021-05-06T15:05:57.6574404Z βž• Upload: assets/icons/SVG/arrow-circle-up.svg
2021-05-06T15:05:57.6575374Z βž• Upload: assets/icons/SVG/arrow-down.svg
2021-05-06T15:05:57.6576283Z βž• Upload: assets/icons/SVG/arrow-left.svg
2021-05-06T15:05:57.6577219Z βž• Upload: assets/icons/SVG/arrow-right.svg
2021-05-06T15:05:57.6578127Z βž• Upload: assets/icons/SVG/arrow-up.svg
2021-05-06T15:05:57.6579016Z βž• Upload: assets/icons/SVG/arrows-alt.svg
2021-05-06T15:05:57.6579926Z βž• Upload: assets/icons/SVG/asterisk.svg
2021-05-06T15:05:57.6581493Z βž• Upload: assets/icons/SVG/behance.svg
2021-05-06T15:05:57.6582349Z βž• Upload: assets/icons/SVG/bin.svg
2021-05-06T15:05:57.6583139Z βž• Upload: assets/icons/SVG/book.svg
2021-05-06T15:05:57.6583989Z βž• Upload: assets/icons/SVG/bookmark.svg
2021-05-06T15:05:57.6584841Z βž• Upload: assets/icons/SVG/books.svg
2021-05-06T15:05:57.6585687Z βž• Upload: assets/icons/SVG/bullhorn.svg
2021-05-06T15:05:57.6586550Z βž• Upload: assets/icons/SVG/camera.svg
2021-05-06T15:05:57.6587379Z βž• Upload: assets/icons/SVG/cart.svg
2021-05-06T15:05:57.6588232Z βž• Upload: assets/icons/SVG/cc-paypal.svg
2021-05-06T15:05:57.6589139Z βž• Upload: assets/icons/SVG/cc-stripe.svg
2021-05-06T15:05:57.6590021Z βž• Upload: assets/icons/SVG/cc-visa.svg
2021-05-06T15:05:57.6590937Z βž• Upload: assets/icons/SVG/chain-broken.svg
2021-05-06T15:05:57.6591919Z βž• Upload: assets/icons/SVG/check-square-o.svg
2021-05-06T15:05:57.6593005Z βž• Upload: assets/icons/SVG/chevron-circle-down.svg
2021-05-06T15:05:57.6594172Z βž• Upload: assets/icons/SVG/chevron-circle-left.svg
2021-05-06T15:05:57.6595358Z βž• Upload: assets/icons/SVG/chevron-circle-right.svg
2021-05-06T15:05:57.6596512Z βž• Upload: assets/icons/SVG/chevron-circle-up.svg
2021-05-06T15:05:57.6597479Z βž• Upload: assets/icons/SVG/chrome.svg
2021-05-06T15:05:57.6598418Z βž• Upload: assets/icons/SVG/cloud-download.svg
2021-05-06T15:05:57.6599391Z βž• Upload: assets/icons/SVG/cloud-upload.svg
2021-05-06T15:05:57.6600404Z βž• Upload: assets/icons/SVG/cog.svg
2021-05-06T15:05:57.6601823Z βž• Upload: assets/icons/SVG/cogs.svg
2021-05-06T15:05:57.6602729Z βž• Upload: assets/icons/SVG/coin-dollar.svg
2021-05-06T15:05:57.6603749Z βž• Upload: assets/icons/SVG/coin-euro.svg
2021-05-06T15:05:57.6604655Z βž• Upload: assets/icons/SVG/comments.svg
2021-05-06T15:05:57.6605528Z βž• Upload: assets/icons/SVG/compress.svg
2021-05-06T15:05:57.6606442Z βž• Upload: assets/icons/SVG/connection.svg
2021-05-06T15:05:57.6607339Z βž• Upload: assets/icons/SVG/desktop.svg
2021-05-06T15:05:57.6608501Z βž• Upload: assets/icons/SVG/dribbble.svg
2021-05-06T15:05:57.6609388Z βž• Upload: assets/icons/SVG/dropbox.svg
2021-05-06T15:05:57.6610351Z βž• Upload: assets/icons/SVG/edge.svg
2021-05-06T15:05:57.6611175Z βž• Upload: assets/icons/SVG/edit.svg
2021-05-06T15:05:57.6612026Z βž• Upload: assets/icons/SVG/envelope.svg
2021-05-06T15:05:57.6612904Z βž• Upload: assets/icons/SVG/expand.svg
2021-05-06T15:05:57.6613846Z βž• Upload: assets/icons/SVG/external-link.svg
2021-05-06T15:05:57.6614792Z βž• Upload: assets/icons/SVG/eye-slash.svg
2021-05-06T15:05:57.6615629Z βž• Upload: assets/icons/SVG/eye.svg
2021-05-06T15:05:57.6616605Z βž• Upload: assets/icons/SVG/facebook-official.svg
2021-05-06T15:05:57.6617616Z βž• Upload: assets/icons/SVG/file-empty.svg
2021-05-06T15:05:57.6618535Z βž• Upload: assets/icons/SVG/file-excel.svg
2021-05-06T15:05:57.6619480Z βž• Upload: assets/icons/SVG/file-image-o.svg
2021-05-06T15:05:57.6620536Z βž• Upload: assets/icons/SVG/file-pdf.svg
2021-05-06T15:05:57.6621422Z βž• Upload: assets/icons/SVG/file-word.svg
2021-05-06T15:05:57.6622372Z βž• Upload: assets/icons/SVG/files-empty.svg
2021-05-06T15:05:57.6623270Z βž• Upload: assets/icons/SVG/filter.svg
2021-05-06T15:05:57.6624141Z βž• Upload: assets/icons/SVG/firefox.svg
2021-05-06T15:05:57.6625043Z βž• Upload: assets/icons/SVG/folder-open.svg
2021-05-06T15:05:57.6625936Z βž• Upload: assets/icons/SVG/folder.svg
2021-05-06T15:05:57.6626785Z βž• Upload: assets/icons/SVG/github.svg
2021-05-06T15:05:57.6627605Z βž• Upload: assets/icons/SVG/glass.svg
2021-05-06T15:05:57.6628436Z βž• Upload: assets/icons/SVG/globe.svg
2021-05-06T15:05:57.6629287Z βž• Upload: assets/icons/SVG/hashtag.svg
2021-05-06T15:05:57.6630223Z βž• Upload: assets/icons/SVG/headphones.svg
2021-05-06T15:05:57.6631082Z βž• Upload: assets/icons/SVG/home.svg
2021-05-06T15:05:57.6631916Z βž• Upload: assets/icons/SVG/images.svg
2021-05-06T15:05:57.6632736Z βž• Upload: assets/icons/SVG/key.svg
2021-05-06T15:05:57.6633530Z βž• Upload: assets/icons/SVG/link.svg
2021-05-06T15:05:57.6634381Z βž• Upload: assets/icons/SVG/linkedin.svg
2021-05-06T15:05:57.6635235Z βž• Upload: assets/icons/SVG/lock.svg
2021-05-06T15:05:57.6636122Z βž• Upload: assets/icons/SVG/mail-forward.svg
2021-05-06T15:05:57.6637002Z βž• Upload: assets/icons/SVG/mic.svg
2021-05-06T15:05:57.6637826Z βž• Upload: assets/icons/SVG/mobile.svg
2021-05-06T15:05:57.6638643Z βž• Upload: assets/icons/SVG/mug.svg
2021-05-06T15:05:57.6639443Z βž• Upload: assets/icons/SVG/music.svg
2021-05-06T15:05:57.6640282Z βž• Upload: assets/icons/SVG/office.svg
2021-05-06T15:05:57.6641123Z βž• Upload: assets/icons/SVG/opera.svg
2021-05-06T15:05:57.6641943Z βž• Upload: assets/icons/SVG/pause.svg
2021-05-06T15:05:57.6642787Z βž• Upload: assets/icons/SVG/pencil.svg
2021-05-06T15:05:57.6643818Z βž• Upload: assets/icons/SVG/pinterest-o.svg
2021-05-06T15:05:57.6644732Z βž• Upload: assets/icons/SVG/pinterest.svg
2021-05-06T15:05:57.6645599Z βž• Upload: assets/icons/SVG/play.svg
2021-05-06T15:05:57.6646498Z βž• Upload: assets/icons/SVG/price-tag.svg
2021-05-06T15:05:57.6647518Z βž• Upload: assets/icons/SVG/question-circle-o.svg
2021-05-06T15:05:57.6648842Z βž• Upload: assets/icons/SVG/question-circle.svg
2021-05-06T15:05:57.6649827Z βž• Upload: assets/icons/SVG/registered.svg
2021-05-06T15:05:57.6650726Z βž• Upload: assets/icons/SVG/safari.svg
2021-05-06T15:05:57.6651648Z βž• Upload: assets/icons/SVG/search-minus.svg
2021-05-06T15:05:57.6652631Z βž• Upload: assets/icons/SVG/search-plus.svg
2021-05-06T15:05:57.6653512Z βž• Upload: assets/icons/SVG/search.svg
2021-05-06T15:05:57.6654456Z βž• Upload: assets/icons/SVG/share-square-o.svg
2021-05-06T15:05:57.6655380Z βž• Upload: assets/icons/SVG/sign-in.svg
2021-05-06T15:05:57.6656242Z βž• Upload: assets/icons/SVG/sign-out.svg
2021-05-06T15:05:57.6657097Z βž• Upload: assets/icons/SVG/skype.svg
2021-05-06T15:05:57.6657991Z βž• Upload: assets/icons/SVG/star-empty.svg
2021-05-06T15:05:57.6658904Z βž• Upload: assets/icons/SVG/star-full.svg
2021-05-06T15:05:57.6659810Z βž• Upload: assets/icons/SVG/star-half.svg
2021-05-06T15:05:57.6660665Z βž• Upload: assets/icons/SVG/stop.svg
2021-05-06T15:05:57.6661497Z βž• Upload: assets/icons/SVG/switch.svg
2021-05-06T15:05:57.6662567Z βž• Upload: assets/icons/SVG/thumbs-o-down.svg
2021-05-06T15:05:57.6663556Z βž• Upload: assets/icons/SVG/thumbs-o-up.svg
2021-05-06T15:05:57.6664603Z βž• Upload: assets/icons/SVG/trademark.svg
2021-05-06T15:05:57.6665484Z βž• Upload: assets/icons/SVG/twitter.svg
2021-05-06T15:05:57.6666379Z βž• Upload: assets/icons/SVG/unlocked.svg
2021-05-06T15:05:57.6667289Z βž• Upload: assets/icons/SVG/user-minus.svg
2021-05-06T15:05:57.6668206Z βž• Upload: assets/icons/SVG/user-plus.svg
2021-05-06T15:05:57.6669079Z βž• Upload: assets/icons/SVG/user.svg
2021-05-06T15:05:57.6669907Z βž• Upload: assets/icons/SVG/users.svg
2021-05-06T15:05:57.6670775Z βž• Upload: assets/icons/SVG/whatsapp.svg
2021-05-06T15:05:57.6671683Z βž• Upload: assets/icons/SVG/wikipedia-w.svg
2021-05-06T15:05:57.6672602Z βž• Upload: assets/icons/SVG/windows8.svg
2021-05-06T15:05:57.6673499Z βž• Upload: assets/icons/SVG/wordpress.svg
2021-05-06T15:05:57.6674442Z βž• Upload: assets/icons/SVG/youtube-play.svg
2021-05-06T15:05:57.6675318Z βž• Upload: assets/icons/svgxuse.js
2021-05-06T15:05:57.6676187Z βž• Upload: assets/icons/symbol-defs.svg
2021-05-06T15:05:57.6676997Z πŸ“ Create: assets/images
2021-05-06T15:05:57.6677805Z βž• Upload: assets/images/header-bg.png
2021-05-06T15:05:57.6678748Z βž• Upload: assets/images/header-bottom.png
2021-05-06T15:05:57.6679725Z βž• Upload: assets/images/header-bottom.svg
2021-05-06T15:05:57.6680501Z πŸ“ Create: assets/js
2021-05-06T15:05:57.6681209Z πŸ“ Create: assets/js/custom
2021-05-06T15:05:57.6682027Z βž• Upload: assets/js/custom-gform.js
2021-05-06T15:05:57.6683032Z βž• Upload: assets/js/custom/bibleVerse.js
2021-05-06T15:05:57.6683905Z βž• Upload: assets/js/custom/events.js
2021-05-06T15:05:57.6684732Z βž• Upload: assets/js/custom/icons.js
2021-05-06T15:05:57.6685593Z βž• Upload: assets/js/custom/navigation.js
2021-05-06T15:05:57.6686576Z βž• Upload: assets/js/custom/objectfitFallback.js
2021-05-06T15:05:57.6687650Z βž• Upload: assets/js/custom/responsive-iframe.js
2021-05-06T15:05:57.6688599Z βž• Upload: assets/js/custom/search.js
2021-05-06T15:05:57.6689436Z βž• Upload: assets/js/custom/setup.js
2021-05-06T15:05:57.6690261Z βž• Upload: assets/js/custom/sidebar.js
2021-05-06T15:05:57.6691195Z βž• Upload: assets/js/custom/smooth-scroll.js
2021-05-06T15:05:57.6692182Z βž• Upload: assets/js/customize-controls.js
2021-05-06T15:05:57.6693187Z βž• Upload: assets/js/customize-preview.js
2021-05-06T15:05:57.6694048Z βž• Upload: assets/readme.md
2021-05-06T15:05:57.6694754Z πŸ“ Create: assets/sass
2021-05-06T15:05:57.6695494Z βž• Upload: assets/sass/admin.scss
2021-05-06T15:05:57.6696251Z πŸ“ Create: assets/sass/core
2021-05-06T15:05:57.6697122Z βž• Upload: assets/sass/core/_base-layout.scss
2021-05-06T15:05:57.6698017Z βž• Upload: assets/sass/core/_base.scss
2021-05-06T15:05:57.6698914Z βž• Upload: assets/sass/core/_grid-layout.scss
2021-05-06T15:05:57.6699953Z βž• Upload: assets/sass/core/_gutenberg-layout.scss
2021-05-06T15:05:57.6700971Z βž• Upload: assets/sass/core/_ie11-layout.scss
2021-05-06T15:05:57.6701918Z βž• Upload: assets/sass/core/_menu-layout.scss
2021-05-06T15:05:57.6702842Z βž• Upload: assets/sass/core/_mixins.scss
2021-05-06T15:05:57.6703852Z βž• Upload: assets/sass/core/_panel-left-layout.scss
2021-05-06T15:05:57.6704991Z βž• Upload: assets/sass/core/_panel-right-layout.scss
2021-05-06T15:05:57.6706091Z βž• Upload: assets/sass/core/_sidebar-layout.scss
2021-05-06T15:05:57.6707071Z βž• Upload: assets/sass/core/_variables.scss
2021-05-06T15:05:57.6708007Z βž• Upload: assets/sass/editor-style.scss
2021-05-06T15:05:57.6708852Z πŸ“ Create: assets/sass/elements
2021-05-06T15:05:57.6709782Z βž• Upload: assets/sass/elements/_animations.scss
2021-05-06T15:05:57.6710773Z βž• Upload: assets/sass/elements/_articles.scss
2021-05-06T15:05:57.6711742Z βž• Upload: assets/sass/elements/_elements.scss
2021-05-06T15:05:57.6712689Z βž• Upload: assets/sass/elements/_forms.scss
2021-05-06T15:05:57.6713609Z βž• Upload: assets/sass/elements/_icons.scss
2021-05-06T15:05:57.6714578Z βž• Upload: assets/sass/elements/_lists_tables.scss
2021-05-06T15:05:57.6715540Z βž• Upload: assets/sass/elements/_sections.scss
2021-05-06T15:05:57.6716511Z πŸ“ Create: assets/sass/global
2021-05-06T15:05:57.6717369Z βž• Upload: assets/sass/global/_global.scss
2021-05-06T15:05:57.6718332Z βž• Upload: assets/sass/global/_media.scss
2021-05-06T15:05:57.6719199Z βž• Upload: assets/sass/global/_page.scss
2021-05-06T15:05:57.6720082Z βž• Upload: assets/sass/global/_panels.scss
2021-05-06T15:05:57.6720968Z βž• Upload: assets/sass/global/_sidebar.scss
2021-05-06T15:05:57.6721891Z βž• Upload: assets/sass/global/_site-top.scss
2021-05-06T15:05:57.6722844Z βž• Upload: assets/sass/global/_typography.scss
2021-05-06T15:05:57.6724084Z βž• Upload: assets/sass/gutenberg-editor-style.scss
2021-05-06T15:05:57.6725018Z πŸ“ Create: assets/sass/libs
2021-05-06T15:05:57.6726495Z βž• Upload: assets/sass/libs/_libs.scss
2021-05-06T15:05:57.6727429Z βž• Upload: assets/sass/libs/_normalize.scss
2021-05-06T15:05:57.6728385Z βž• Upload: assets/sass/libs/_outdated_browser.scss
2021-05-06T15:05:57.6729323Z βž• Upload: assets/sass/login-style.scss
2021-05-06T15:05:57.6730183Z βž• Upload: assets/sass/main.scss
2021-05-06T15:05:57.6730982Z πŸ“ Create: assets/sass/wordpress
2021-05-06T15:05:57.6731884Z βž• Upload: assets/sass/wordpress/_comments.scss
2021-05-06T15:05:57.6732959Z βž• Upload: assets/sass/wordpress/_default-blocks.scss
2021-05-06T15:05:57.6733988Z βž• Upload: assets/sass/wordpress/_gforms.scss
2021-05-06T15:05:57.6735028Z βž• Upload: assets/sass/wordpress/_template-parts.scss
2021-05-06T15:05:57.6736101Z βž• Upload: assets/sass/wordpress/_wordpress.scss
2021-05-06T15:05:57.6736935Z βž• Upload: changelog.md
2021-05-06T15:05:57.6737644Z βž• Upload: comments.php
2021-05-06T15:05:57.6738304Z πŸ“ Create: dist
2021-05-06T15:05:57.6738980Z πŸ“ Create: dist/acf_extras
2021-05-06T15:05:57.6739790Z βž• Upload: dist/acf_extras/acf_scripts.js
2021-05-06T15:05:57.6740690Z βž• Upload: dist/acf_extras/acf_scripts.min.js
2021-05-06T15:05:57.6741488Z βž• Upload: dist/admin.css
2021-05-06T15:05:57.6742236Z βž• Upload: dist/admin.min.css
2021-05-06T15:05:57.6743021Z βž• Upload: dist/custom-gform.js
2021-05-06T15:05:57.6743903Z βž• Upload: dist/custom-gform.min.js
2021-05-06T15:05:57.6744696Z βž• Upload: dist/custom.js
2021-05-06T15:05:57.6745425Z βž• Upload: dist/custom.min.js
2021-05-06T15:05:57.6746326Z βž• Upload: dist/customize-controls.js
2021-05-06T15:05:57.6747369Z βž• Upload: dist/customize-controls.min.js
2021-05-06T15:05:57.6748386Z βž• Upload: dist/customize-preview.js
2021-05-06T15:05:57.6749415Z βž• Upload: dist/customize-preview.min.js
2021-05-06T15:05:57.6750363Z βž• Upload: dist/editor-style.css
2021-05-06T15:05:57.6751273Z βž• Upload: dist/editor-style.min.css
2021-05-06T15:05:57.6752308Z βž• Upload: dist/gutenberg-editor-style.css
2021-05-06T15:05:57.6753511Z βž• Upload: dist/gutenberg-editor-style.min.css
2021-05-06T15:05:57.6754532Z βž• Upload: dist/login-style.css
2021-05-06T15:05:57.6755391Z βž• Upload: dist/login-style.min.css
2021-05-06T15:05:57.6756175Z βž• Upload: dist/main.css
2021-05-06T15:05:57.6756903Z βž• Upload: dist/main.min.css
2021-05-06T15:05:57.6757616Z βž• Upload: footer.php
2021-05-06T15:05:57.6758329Z βž• Upload: functions.php
2021-05-06T15:05:57.6759129Z βž• Upload: gulpfile.babel.js
2021-05-06T15:05:57.6759883Z βž• Upload: header.php
2021-05-06T15:05:57.6760552Z βž• Upload: home.php
2021-05-06T15:05:57.6761176Z πŸ“ Create: inc
2021-05-06T15:05:57.6761913Z βž• Upload: inc/_custom_queries.php
2021-05-06T15:05:57.6762724Z βž• Upload: inc/_eccr_functions.php
2021-05-06T15:05:57.6763699Z βž• Upload: inc/_optional_filters.php
2021-05-06T15:05:57.6764474Z πŸ“ Create: inc/acf_extras
2021-05-06T15:05:57.6765704Z βž• Upload: inc/acf_extras/_acf_extras.php
2021-05-06T15:05:57.6766583Z βž• Upload: inc/acf_extras/acf_scripts.js
2021-05-06T15:05:57.6767442Z βž• Upload: inc/acf_extras/acf_styles.css
2021-05-06T15:05:57.6768225Z πŸ“ Create: inc/core
2021-05-06T15:05:57.6768986Z βž• Upload: inc/core/_customizer.php
2021-05-06T15:05:57.6769793Z βž• Upload: inc/core/_extras.php
2021-05-06T15:05:57.6770659Z βž• Upload: inc/core/_icon-functions.php
2021-05-06T15:05:57.6771592Z βž• Upload: inc/core/_ignition_gform_extras.php
2021-05-06T15:05:57.6772556Z βž• Upload: inc/core/_template-classes.php
2021-05-06T15:05:57.6773681Z βž• Upload: inc/core/_template-tags.php
2021-05-06T15:05:57.6774597Z βž• Upload: inc/core/back-compat.php
2021-05-06T15:05:57.6775568Z βž• Upload: inc/core/dev-helpers.php
2021-05-06T15:05:57.6776441Z βž• Upload: inc/core/woocommerce.php
2021-05-06T15:05:57.6777239Z πŸ“ Create: inc/scrollmagic
2021-05-06T15:05:57.6778089Z βž• Upload: inc/scrollmagic/_scrollmagic.js
2021-05-06T15:05:57.6779051Z βž• Upload: inc/scrollmagic/_scrollmagic.php
2021-05-06T15:05:57.6779857Z βž• Upload: index.php
2021-05-06T15:05:57.6780527Z πŸ“ Create: languages
2021-05-06T15:05:57.6781240Z βž• Upload: languages/eccr
2021-05-06T15:05:57.6782040Z βž• Upload: languages/ignition.pot
2021-05-06T15:05:57.6782761Z βž• Upload: LICENSE
2021-05-06T15:05:57.6783420Z πŸ“ Create: node_modules
2021-05-06T15:05:57.6784190Z βž• Upload: package-lock.json
2021-05-06T15:05:57.6784950Z βž• Upload: package.json
2021-05-06T15:05:57.6785711Z βž• Upload: page-updates.php
2021-05-06T15:05:57.6786439Z βž• Upload: page.php
2021-05-06T15:05:57.6787116Z βž• Upload: README.md
2021-05-06T15:05:57.6787819Z βž• Upload: screenshot.png
2021-05-06T15:05:57.6788538Z βž• Upload: search.php
2021-05-06T15:05:57.6789279Z βž• Upload: searchform.php
2021-05-06T15:05:57.6790059Z βž• Upload: sidebar-left.php
2021-05-06T15:05:57.6790882Z βž• Upload: sidebar-right.php
2021-05-06T15:05:57.6791645Z βž• Upload: sidebar.php
2021-05-06T15:05:57.6792341Z βž• Upload: single.php
2021-05-06T15:05:57.6792997Z βž• Upload: style.css
2021-05-06T15:05:57.6793730Z πŸ“ Create: template-parts
2021-05-06T15:05:57.6794599Z πŸ“ Create: template-parts/acf-blocks
2021-05-06T15:05:57.6795637Z βž• Upload: template-parts/acf-blocks/_acf-blocks.php
2021-05-06T15:05:57.6796685Z πŸ“ Create: template-parts/acf-blocks/boxes
2021-05-06T15:05:57.6798051Z βž• Upload: template-parts/acf-blocks/boxes/_boxes.scss
2021-05-06T15:05:57.6799144Z βž• Upload: template-parts/acf-blocks/boxes/boxes.php
2021-05-06T15:05:57.6800181Z πŸ“ Create: template-parts/acf-blocks/cards
2021-05-06T15:05:57.6801313Z βž• Upload: template-parts/acf-blocks/cards/cards-block.php
2021-05-06T15:05:57.6802404Z πŸ“ Create: template-parts/acf-blocks/events
2021-05-06T15:05:57.6803681Z βž• Upload: template-parts/acf-blocks/events/_events.scss
2021-05-06T15:05:57.6804835Z βž• Upload: template-parts/acf-blocks/events/events.php
2021-05-06T15:05:57.6805912Z πŸ“ Create: template-parts/acf-blocks/gallery
2021-05-06T15:05:57.6807067Z βž• Upload: template-parts/acf-blocks/gallery/gallery-item.php
2021-05-06T15:05:57.6808294Z βž• Upload: template-parts/acf-blocks/gallery/gallery.php
2021-05-06T15:05:57.6809371Z πŸ“ Create: template-parts/acf-blocks/header
2021-05-06T15:05:57.6810464Z βž• Upload: template-parts/acf-blocks/header/_header.scss
2021-05-06T15:05:57.6811685Z βž• Upload: template-parts/acf-blocks/header/header-block.php
2021-05-06T15:05:57.6812845Z πŸ“ Create: template-parts/acf-blocks/newsletters
2021-05-06T15:05:57.6814073Z βž• Upload: template-parts/acf-blocks/newsletters/_newsletter.scss
2021-05-06T15:05:57.6815469Z βž• Upload: template-parts/acf-blocks/newsletters/newsletters-block.php
2021-05-06T15:05:57.6816755Z πŸ“ Create: template-parts/acf-blocks/opportunities
2021-05-06T15:05:57.6818053Z βž• Upload: template-parts/acf-blocks/opportunities/opportunities.php
2021-05-06T15:05:57.6819285Z πŸ“ Create: template-parts/acf-blocks/paragraphs
2021-05-06T15:05:57.6820676Z βž• Upload: template-parts/acf-blocks/paragraphs/paragraphs-block.php
2021-05-06T15:05:57.6821947Z πŸ“ Create: template-parts/acf-blocks/section-menu
2021-05-06T15:05:57.6823241Z βž• Upload: template-parts/acf-blocks/section-menu/section_menu-block.php
2021-05-06T15:05:57.6824622Z βž• Upload: template-parts/acf-blocks/section-menu/section-menu.scss
2021-05-06T15:05:57.6825790Z πŸ“ Create: template-parts/acf-blocks/services
2021-05-06T15:05:57.6826939Z βž• Upload: template-parts/acf-blocks/services/_services.php
2021-05-06T15:05:57.6828159Z βž• Upload: template-parts/acf-blocks/services/_services.scss
2021-05-06T15:05:57.6829362Z βž• Upload: template-parts/acf-blocks/services/services.php
2021-05-06T15:05:57.6830636Z πŸ“ Create: template-parts/acf-blocks/stories
2021-05-06T15:05:57.6831761Z βž• Upload: template-parts/acf-blocks/stories/stories.php
2021-05-06T15:05:57.6832972Z πŸ“ Create: template-parts/acf-blocks/text-section
2021-05-06T15:05:57.6834229Z βž• Upload: template-parts/acf-blocks/text-section/_text-section.scss
2021-05-06T15:05:57.6835577Z βž• Upload: template-parts/acf-blocks/text-section/text-section.php
2021-05-06T15:05:57.6836745Z πŸ“ Create: template-parts/acf-blocks/timeline
2021-05-06T15:05:57.6837879Z βž• Upload: template-parts/acf-blocks/timeline/_timeline.scss
2021-05-06T15:05:57.6839166Z βž• Upload: template-parts/acf-blocks/timeline/timeline-block.php
2021-05-06T15:05:57.6840249Z πŸ“ Create: template-parts/eccr_jobs
2021-05-06T15:05:57.6841207Z βž• Upload: template-parts/eccr_jobs/card.php
2021-05-06T15:05:57.6842249Z βž• Upload: template-parts/eccr_jobs/content.php
2021-05-06T15:05:57.6843363Z πŸ“ Create: template-parts/eccr_newsletter
2021-05-06T15:05:57.6844423Z βž• Upload: template-parts/eccr_newsletter/card.php
2021-05-06T15:05:57.6845419Z πŸ“ Create: template-parts/eccr_stories
2021-05-06T15:05:57.6846459Z βž• Upload: template-parts/eccr_stories/_stories.scss
2021-05-06T15:05:57.6847527Z βž• Upload: template-parts/eccr_stories/card.php
2021-05-06T15:05:57.6848441Z πŸ“ Create: template-parts/event
2021-05-06T15:05:57.6849401Z βž• Upload: template-parts/event/_events.scss
2021-05-06T15:05:57.6850383Z βž• Upload: template-parts/event/card.php
2021-05-06T15:05:57.6851375Z βž• Upload: template-parts/event/content.php
2021-05-06T15:05:57.6852302Z πŸ“ Create: template-parts/footer
2021-05-06T15:05:57.6853350Z βž• Upload: template-parts/footer/footer-widgets.php
2021-05-06T15:05:57.6854451Z βž• Upload: template-parts/footer/site-info.php
2021-05-06T15:05:57.6855406Z πŸ“ Create: template-parts/galleries
2021-05-06T15:05:57.6856424Z βž• Upload: template-parts/galleries/_gallery.php
2021-05-06T15:05:57.6857529Z βž• Upload: template-parts/galleries/_gallery.scss
2021-05-06T15:05:57.6858568Z βž• Upload: template-parts/galleries/card.php
2021-05-06T15:05:57.6859617Z βž• Upload: template-parts/galleries/content.php
2021-05-06T15:05:57.6860557Z πŸ“ Create: template-parts/page
2021-05-06T15:05:57.6861477Z βž• Upload: template-parts/page/card.php
2021-05-06T15:05:57.6862438Z βž• Upload: template-parts/page/content.php
2021-05-06T15:05:57.6863342Z πŸ“ Create: template-parts/post
2021-05-06T15:05:57.6864249Z βž• Upload: template-parts/post/card.php
2021-05-06T15:05:57.6865203Z βž• Upload: template-parts/post/content.php
2021-05-06T15:05:57.6866175Z βž• Upload: template-parts/post/post.scss
2021-05-06T15:05:57.6867096Z βž• Upload: template-parts/readme.md
2021-05-06T15:05:57.6868001Z πŸ“ Create: template-parts/site-top
2021-05-06T15:05:57.6869071Z βž• Upload: template-parts/site-top/default-header.php
2021-05-06T15:05:57.6870202Z βž• Upload: template-parts/site-top/site-top.php
2021-05-06T15:05:57.6871125Z βž• Upload: wpgulp.config.js
2021-05-06T15:05:57.6872081Z ----------------------------------------------------------------
2021-05-06T15:05:57.6872859Z Making changes to 369 files to sync server state
2021-05-06T15:05:57.6873843Z Uploading: 4.82 MB -- Deleting: 0 B -- Replacing: 0 B
2021-05-06T15:05:57.6874837Z ----------------------------------------------------------------
2021-05-06T15:05:57.6875657Z creating folder "acf-json/"
2021-05-06T15:05:58.4688950Z creating folder "assets/"
2021-05-06T15:05:58.4691217Z creating folder "assets/icons/"
2021-05-06T15:05:58.4693805Z creating folder "assets/icons/demo-files/"
2021-05-06T15:05:58.4695381Z creating folder "assets/icons/SVG/"
2021-05-06T15:05:58.4696775Z creating folder "assets/images/"
2021-05-06T15:05:58.6256984Z creating folder "assets/js/"
2021-05-06T15:05:58.7871875Z creating folder "assets/js/custom/"
2021-05-06T15:05:59.0291848Z creating folder "assets/sass/"
2021-05-06T15:05:59.1904189Z creating folder "assets/sass/core/"
2021-05-06T15:05:59.4306589Z creating folder "assets/sass/elements/"
2021-05-06T15:05:59.6720355Z creating folder "assets/sass/global/"
2021-05-06T15:05:59.9129399Z creating folder "assets/sass/libs/"
2021-05-06T15:06:00.1556113Z creating folder "assets/sass/wordpress/"
2021-05-06T15:06:00.3979074Z creating folder "dist/"
2021-05-06T15:06:00.4784840Z creating folder "dist/acf_extras/"
2021-05-06T15:06:00.6407136Z creating folder "inc/"
2021-05-06T15:06:00.7212800Z creating folder "inc/acf_extras/"
2021-05-06T15:06:00.8815316Z creating folder "inc/core/"
2021-05-06T15:06:01.0418447Z creating folder "inc/scrollmagic/"
2021-05-06T15:06:01.2035763Z creating folder "languages/"
2021-05-06T15:06:01.2850762Z creating folder "node_modules/"
2021-05-06T15:06:01.3657170Z creating folder "template-parts/"
2021-05-06T15:06:01.4463240Z creating folder "template-parts/acf-blocks/"
2021-05-06T15:06:01.6072915Z creating folder "template-parts/acf-blocks/boxes/"
2021-05-06T15:06:01.8515400Z creating folder "template-parts/acf-blocks/cards/"
2021-05-06T15:06:02.0930546Z creating folder "template-parts/acf-blocks/events/"
2021-05-06T15:06:02.3348605Z creating folder "template-parts/acf-blocks/gallery/"
2021-05-06T15:06:02.5765117Z creating folder "template-parts/acf-blocks/header/"
2021-05-06T15:06:02.8176863Z creating folder "template-parts/acf-blocks/newsletters/"
2021-05-06T15:06:03.0589001Z creating folder "template-parts/acf-blocks/opportunities/"
2021-05-06T15:06:03.3009651Z creating folder "template-parts/acf-blocks/paragraphs/"
2021-05-06T15:06:03.5444421Z creating folder "template-parts/acf-blocks/section-menu/"
2021-05-06T15:06:03.7856973Z creating folder "template-parts/acf-blocks/services/"
2021-05-06T15:06:04.0281259Z creating folder "template-parts/acf-blocks/stories/"
2021-05-06T15:06:04.2709122Z creating folder "template-parts/acf-blocks/text-section/"
2021-05-06T15:06:04.5132851Z creating folder "template-parts/acf-blocks/timeline/"
2021-05-06T15:06:04.7549726Z creating folder "template-parts/eccr_jobs/"
2021-05-06T15:06:04.9169975Z creating folder "template-parts/eccr_newsletter/"
2021-05-06T15:06:05.0791222Z creating folder "template-parts/eccr_stories/"
2021-05-06T15:06:05.2407442Z creating folder "template-parts/event/"
2021-05-06T15:06:05.4015614Z creating folder "template-parts/footer/"
2021-05-06T15:06:05.5630592Z creating folder "template-parts/galleries/"
2021-05-06T15:06:05.7261457Z creating folder "template-parts/page/"
2021-05-06T15:06:05.8878248Z creating folder "template-parts/post/"
2021-05-06T15:06:06.0490624Z creating folder "template-parts/site-top/"
2021-05-06T15:06:06.2109653Z uploading ".editorconfig"
2021-05-06T15:06:06.3196136Z uploading ".eslintignore"
2021-05-06T15:06:06.4262471Z uploading ".eslintrc.js"
2021-05-06T15:06:06.5345555Z uploading "404.php"
2021-05-06T15:06:06.6432360Z uploading "acf-json/group_5b46727696780.json"
2021-05-06T15:06:06.7497589Z uploading "acf-json/group_5d71340447ff4.json"
2021-05-06T15:06:06.8561981Z uploading "acf-json/group_5d791b896aad1.json"
2021-05-06T15:06:06.9662821Z uploading "acf-json/group_5d80e2fef10d2.json"
2021-05-06T15:06:07.0754004Z uploading "acf-json/group_5d8d13dd011ba.json"
2021-05-06T15:06:07.1836236Z uploading "acf-json/group_5e7257082314f.json"
2021-05-06T15:06:07.2913634Z uploading "acf-json/group_5ea9964b50016.json"
2021-05-06T15:06:07.3999355Z uploading "acf-json/group_5eaaeb7fd7a96.json"
2021-05-06T15:06:07.5072559Z uploading "acf-json/group_5eac3b0153c3f.json"
2021-05-06T15:06:07.6163749Z uploading "acf-json/group_5eb07b17e4bfe.json"
2021-05-06T15:06:07.7241140Z uploading "acf-json/group_5eb2c9438021a.json"
2021-05-06T15:06:07.8340942Z uploading "acf-json/group_5eb2d569c2a60.json"
2021-05-06T15:06:07.9408759Z uploading "acf-json/group_5eb44e3e81587.json"
2021-05-06T15:06:08.0498984Z uploading "acf-json/group_5eb4510349cb0.json"
2021-05-06T15:06:08.1557346Z uploading "acf-json/group_5eb46a4b9fa26.json"
2021-05-06T15:06:08.2654797Z uploading "acf-json/group_5eb5a65b22621.json"
2021-05-06T15:06:08.3722620Z uploading "acf-json/group_5ebc0f0105914.json"
2021-05-06T15:06:08.4800871Z uploading "acf-json/group_5ebc15803f968.json"
2021-05-06T15:06:08.5869236Z uploading "acf-json/group_5ebebbd46197b.json"
2021-05-06T15:06:08.6935949Z uploading "acf-json/group_5ebed657be5b1.json"
2021-05-06T15:06:08.8039783Z uploading "acf-json/group_5ec3e96a9a30b.json"
2021-05-06T15:06:08.9113766Z uploading "acf-json/group_5ecffb343aa86.json"
2021-05-06T15:06:09.0186690Z uploading "acf-json/group_5ef375d654c81.json"
2021-05-06T15:06:09.1272584Z uploading "archive-eccr_jobs.php"
2021-05-06T15:06:09.2342126Z uploading "archive-eccr_newsletter.php"
2021-05-06T15:06:09.3424235Z uploading "archive-galleries.php"
2021-05-06T15:06:09.4495477Z uploading "assets/icons/demo-external-svg.html"
2021-05-06T15:06:09.5830008Z uploading "assets/icons/demo-files/demo.css"
2021-05-06T15:06:09.6915212Z uploading "assets/icons/demo.html"
2021-05-06T15:06:09.8838056Z uploading "assets/icons/Read Me.txt"
2021-05-06T15:06:09.9924854Z uploading "assets/icons/selection.json"
2021-05-06T15:06:10.1858003Z uploading "assets/icons/style.css"
2021-05-06T15:06:10.2935974Z uploading "assets/icons/SVG/amazon.svg"
2021-05-06T15:06:10.4004022Z uploading "assets/icons/SVG/angle-down.svg"
2021-05-06T15:06:10.5095538Z uploading "assets/icons/SVG/angle-left.svg"
2021-05-06T15:06:10.6174284Z uploading "assets/icons/SVG/angle-right.svg"
2021-05-06T15:06:10.7239811Z uploading "assets/icons/SVG/angle-up.svg"
2021-05-06T15:06:10.8325615Z uploading "assets/icons/SVG/appleinc.svg"
2021-05-06T15:06:10.9404048Z uploading "assets/icons/SVG/arrow-circle-down.svg"
2021-05-06T15:06:11.0551636Z uploading "assets/icons/SVG/arrow-circle-left.svg"
2021-05-06T15:06:11.1626267Z uploading "assets/icons/SVG/arrow-circle-o-down.svg"
2021-05-06T15:06:11.2705711Z uploading "assets/icons/SVG/arrow-circle-o-left.svg"
2021-05-06T15:06:11.3772350Z uploading "assets/icons/SVG/arrow-circle-o-right.svg"
2021-05-06T15:06:11.4839831Z uploading "assets/icons/SVG/arrow-circle-o-up.svg"
2021-05-06T15:06:11.5911073Z uploading "assets/icons/SVG/arrow-circle-right.svg"
2021-05-06T15:06:11.6988620Z uploading "assets/icons/SVG/arrow-circle-up.svg"
2021-05-06T15:06:11.8071247Z uploading "assets/icons/SVG/arrow-down.svg"
2021-05-06T15:06:11.9133160Z uploading "assets/icons/SVG/arrow-left.svg"
2021-05-06T15:06:12.0227439Z uploading "assets/icons/SVG/arrow-right.svg"
2021-05-06T15:06:12.1293965Z uploading "assets/icons/SVG/arrow-up.svg"
2021-05-06T15:06:12.2366461Z uploading "assets/icons/SVG/arrows-alt.svg"
2021-05-06T15:06:12.3432513Z uploading "assets/icons/SVG/asterisk.svg"
2021-05-06T15:06:12.4507778Z uploading "assets/icons/SVG/behance.svg"
2021-05-06T15:06:12.5567721Z uploading "assets/icons/SVG/bin.svg"
2021-05-06T15:06:12.6666652Z uploading "assets/icons/SVG/book.svg"
2021-05-06T15:06:12.7746298Z uploading "assets/icons/SVG/bookmark.svg"
2021-05-06T15:06:12.8819137Z uploading "assets/icons/SVG/books.svg"
2021-05-06T15:06:12.9904563Z uploading "assets/icons/SVG/bullhorn.svg"
2021-05-06T15:06:13.0965528Z uploading "assets/icons/SVG/camera.svg"
2021-05-06T15:06:13.2042418Z uploading "assets/icons/SVG/cart.svg"
2021-05-06T15:06:13.3128048Z uploading "assets/icons/SVG/cc-paypal.svg"
2021-05-06T15:06:13.4204218Z uploading "assets/icons/SVG/cc-stripe.svg"
2021-05-06T15:06:13.5286409Z uploading "assets/icons/SVG/cc-visa.svg"
2021-05-06T15:06:13.6376381Z uploading "assets/icons/SVG/chain-broken.svg"
2021-05-06T15:06:13.7445292Z uploading "assets/icons/SVG/check-square-o.svg"
2021-05-06T15:06:13.8524819Z uploading "assets/icons/SVG/chevron-circle-down.svg"
2021-05-06T15:06:13.9605117Z uploading "assets/icons/SVG/chevron-circle-left.svg"
2021-05-06T15:06:14.0699252Z uploading "assets/icons/SVG/chevron-circle-right.svg"
2021-05-06T15:06:14.1763856Z uploading "assets/icons/SVG/chevron-circle-up.svg"
2021-05-06T15:06:14.2833842Z uploading "assets/icons/SVG/chrome.svg"
2021-05-06T15:06:14.3917315Z uploading "assets/icons/SVG/cloud-download.svg"
2021-05-06T15:06:14.4984403Z uploading "assets/icons/SVG/cloud-upload.svg"
2021-05-06T15:06:14.6076420Z uploading "assets/icons/SVG/cog.svg"
2021-05-06T15:06:14.7151405Z uploading "assets/icons/SVG/cogs.svg"
2021-05-06T15:06:14.8235746Z uploading "assets/icons/SVG/coin-dollar.svg"
2021-05-06T15:06:14.9313627Z uploading "assets/icons/SVG/coin-euro.svg"
2021-05-06T15:06:15.0373522Z uploading "assets/icons/SVG/comments.svg"
2021-05-06T15:06:15.1442772Z uploading "assets/icons/SVG/compress.svg"
2021-05-06T15:06:15.2519913Z uploading "assets/icons/SVG/connection.svg"
2021-05-06T15:06:15.3595574Z uploading "assets/icons/SVG/desktop.svg"
2021-05-06T15:06:15.4666179Z uploading "assets/icons/SVG/dribbble.svg"
2021-05-06T15:06:15.5745376Z uploading "assets/icons/SVG/dropbox.svg"
2021-05-06T15:06:15.6808627Z uploading "assets/icons/SVG/edge.svg"
2021-05-06T15:06:15.7869300Z uploading "assets/icons/SVG/edit.svg"
2021-05-06T15:06:15.8935006Z uploading "assets/icons/SVG/envelope.svg"
2021-05-06T15:06:16.0009092Z uploading "assets/icons/SVG/expand.svg"
2021-05-06T15:06:16.1091797Z uploading "assets/icons/SVG/external-link.svg"
2021-05-06T15:06:16.2178687Z uploading "assets/icons/SVG/eye-slash.svg"
2021-05-06T15:06:16.3250198Z uploading "assets/icons/SVG/eye.svg"
2021-05-06T15:06:16.4337472Z uploading "assets/icons/SVG/facebook-official.svg"
2021-05-06T15:06:16.5423818Z uploading "assets/icons/SVG/file-empty.svg"
2021-05-06T15:06:16.6522492Z uploading "assets/icons/SVG/file-excel.svg"
2021-05-06T15:06:16.7600710Z uploading "assets/icons/SVG/file-image-o.svg"
2021-05-06T15:06:16.8680706Z uploading "assets/icons/SVG/file-pdf.svg"
2021-05-06T15:06:16.9761077Z uploading "assets/icons/SVG/file-word.svg"
2021-05-06T15:06:17.0827592Z uploading "assets/icons/SVG/files-empty.svg"
2021-05-06T15:06:17.1902115Z uploading "assets/icons/SVG/filter.svg"
2021-05-06T15:06:17.2986771Z uploading "assets/icons/SVG/firefox.svg"
2021-05-06T15:06:17.4051994Z uploading "assets/icons/SVG/folder-open.svg"
2021-05-06T15:06:17.5135120Z uploading "assets/icons/SVG/folder.svg"
2021-05-06T15:06:17.6212647Z uploading "assets/icons/SVG/github.svg"
2021-05-06T15:06:17.7358189Z uploading "assets/icons/SVG/glass.svg"
2021-05-06T15:06:17.8429333Z uploading "assets/icons/SVG/globe.svg"
2021-05-06T15:06:17.9521852Z uploading "assets/icons/SVG/hashtag.svg"
2021-05-06T15:06:18.0560897Z uploading "assets/icons/SVG/headphones.svg"
2021-05-06T15:06:18.1622986Z uploading "assets/icons/SVG/home.svg"
2021-05-06T15:06:18.2692531Z uploading "assets/icons/SVG/images.svg"
2021-05-06T15:06:18.3782071Z uploading "assets/icons/SVG/key.svg"
2021-05-06T15:06:18.4862503Z uploading "assets/icons/SVG/link.svg"
2021-05-06T15:06:18.5925988Z uploading "assets/icons/SVG/linkedin.svg"
2021-05-06T15:06:18.6993682Z uploading "assets/icons/SVG/lock.svg"
2021-05-06T15:06:18.8061611Z uploading "assets/icons/SVG/mail-forward.svg"
2021-05-06T15:06:18.9130126Z uploading "assets/icons/SVG/mic.svg"
2021-05-06T15:06:19.0201908Z uploading "assets/icons/SVG/mobile.svg"
2021-05-06T15:06:19.1267763Z uploading "assets/icons/SVG/mug.svg"
2021-05-06T15:06:19.2335123Z uploading "assets/icons/SVG/music.svg"
2021-05-06T15:06:19.3414687Z uploading "assets/icons/SVG/office.svg"
2021-05-06T15:06:19.4499746Z uploading "assets/icons/SVG/opera.svg"
2021-05-06T15:06:19.5571344Z uploading "assets/icons/SVG/pause.svg"
2021-05-06T15:06:19.6648578Z uploading "assets/icons/SVG/pencil.svg"
2021-05-06T15:06:19.7725570Z uploading "assets/icons/SVG/pinterest-o.svg"
2021-05-06T15:06:19.8803494Z uploading "assets/icons/SVG/pinterest.svg"
2021-05-06T15:06:19.9976379Z uploading "assets/icons/SVG/play.svg"
2021-05-06T15:06:20.1047017Z uploading "assets/icons/SVG/price-tag.svg"
2021-05-06T15:06:20.2123279Z uploading "assets/icons/SVG/question-circle-o.svg"
2021-05-06T15:06:20.3185722Z uploading "assets/icons/SVG/question-circle.svg"
2021-05-06T15:06:20.4249507Z uploading "assets/icons/SVG/registered.svg"
2021-05-06T15:06:20.5322282Z uploading "assets/icons/SVG/safari.svg"
2021-05-06T15:06:20.6402814Z uploading "assets/icons/SVG/search-minus.svg"
2021-05-06T15:06:20.7473984Z uploading "assets/icons/SVG/search-plus.svg"
2021-05-06T15:06:20.8559631Z uploading "assets/icons/SVG/search.svg"
2021-05-06T15:06:20.9642811Z uploading "assets/icons/SVG/share-square-o.svg"
2021-05-06T15:06:21.0723140Z uploading "assets/icons/SVG/sign-in.svg"
2021-05-06T15:06:21.1791364Z uploading "assets/icons/SVG/sign-out.svg"
2021-05-06T15:06:21.2966988Z uploading "assets/icons/SVG/skype.svg"
2021-05-06T15:06:21.4037095Z uploading "assets/icons/SVG/star-empty.svg"
2021-05-06T15:06:21.5197265Z uploading "assets/icons/SVG/star-full.svg"
2021-05-06T15:06:21.6284654Z uploading "assets/icons/SVG/star-half.svg"
2021-05-06T15:06:21.7363800Z uploading "assets/icons/SVG/stop.svg"
2021-05-06T15:06:21.8447007Z uploading "assets/icons/SVG/switch.svg"
2021-05-06T15:06:21.9521017Z uploading "assets/icons/SVG/thumbs-o-down.svg"
2021-05-06T15:06:22.0622262Z uploading "assets/icons/SVG/thumbs-o-up.svg"
2021-05-06T15:06:22.1690267Z uploading "assets/icons/SVG/trademark.svg"
2021-05-06T15:06:22.2767177Z uploading "assets/icons/SVG/twitter.svg"
2021-05-06T15:06:22.3834553Z uploading "assets/icons/SVG/unlocked.svg"
2021-05-06T15:06:22.4904627Z uploading "assets/icons/SVG/user-minus.svg"
2021-05-06T15:06:22.6079294Z uploading "assets/icons/SVG/user-plus.svg"
2021-05-06T15:06:22.7143948Z uploading "assets/icons/SVG/user.svg"
2021-05-06T15:06:22.8223496Z uploading "assets/icons/SVG/users.svg"
2021-05-06T15:06:22.9304320Z uploading "assets/icons/SVG/whatsapp.svg"
2021-05-06T15:06:23.0382454Z uploading "assets/icons/SVG/wikipedia-w.svg"
2021-05-06T15:06:23.1465468Z uploading "assets/icons/SVG/windows8.svg"
2021-05-06T15:06:23.2613447Z uploading "assets/icons/SVG/wordpress.svg"
2021-05-06T15:06:23.3693212Z uploading "assets/icons/SVG/youtube-play.svg"
2021-05-06T15:06:23.4750632Z uploading "assets/icons/svgxuse.js"
2021-05-06T15:06:23.5818600Z uploading "assets/icons/symbol-defs.svg"
2021-05-06T15:06:23.7709655Z uploading "assets/images/header-bg.png"
2021-05-06T15:06:24.0550132Z uploading "assets/images/header-bottom.png"
2021-05-06T15:06:24.1633348Z uploading "assets/images/header-bottom.svg"
2021-05-06T15:06:24.2705976Z uploading "assets/js/custom-gform.js"
2021-05-06T15:06:24.3780587Z uploading "assets/js/custom/bibleVerse.js"
2021-05-06T15:06:24.4866924Z uploading "assets/js/custom/events.js"
2021-05-06T15:06:24.5943993Z uploading "assets/js/custom/icons.js"
2021-05-06T15:06:24.7116621Z uploading "assets/js/custom/navigation.js"
2021-05-06T15:06:24.8188838Z uploading "assets/js/custom/objectfitFallback.js"
2021-05-06T15:06:24.9256195Z uploading "assets/js/custom/responsive-iframe.js"
2021-05-06T15:06:25.0339446Z uploading "assets/js/custom/search.js"
2021-05-06T15:06:25.1423236Z uploading "assets/js/custom/setup.js"
2021-05-06T15:06:25.2513228Z uploading "assets/js/custom/sidebar.js"
2021-05-06T15:06:25.3611245Z uploading "assets/js/custom/smooth-scroll.js"
2021-05-06T15:06:25.4687386Z uploading "assets/js/customize-controls.js"
2021-05-06T15:06:25.5757176Z uploading "assets/js/customize-preview.js"
2021-05-06T15:06:25.6912789Z uploading "assets/readme.md"
2021-05-06T15:06:25.7983544Z uploading "assets/sass/admin.scss"
2021-05-06T15:06:25.9057163Z uploading "assets/sass/core/_base-layout.scss"
2021-05-06T15:06:26.0127344Z uploading "assets/sass/core/_base.scss"
2021-05-06T15:06:26.1202795Z uploading "assets/sass/core/_grid-layout.scss"
2021-05-06T15:06:26.2284507Z uploading "assets/sass/core/_gutenberg-layout.scss"
2021-05-06T15:06:26.3359388Z uploading "assets/sass/core/_ie11-layout.scss"
2021-05-06T15:06:26.4418951Z uploading "assets/sass/core/_menu-layout.scss"
2021-05-06T15:06:26.5506998Z uploading "assets/sass/core/_mixins.scss"
2021-05-06T15:06:26.6578295Z uploading "assets/sass/core/_panel-left-layout.scss"
2021-05-06T15:06:26.7649201Z uploading "assets/sass/core/_panel-right-layout.scss"
2021-05-06T15:06:26.8729511Z uploading "assets/sass/core/_sidebar-layout.scss"
2021-05-06T15:06:26.9797543Z uploading "assets/sass/core/_variables.scss"
2021-05-06T15:06:27.0952885Z uploading "assets/sass/editor-style.scss"
2021-05-06T15:06:27.2014969Z uploading "assets/sass/elements/_animations.scss"
2021-05-06T15:06:27.3080440Z uploading "assets/sass/elements/_articles.scss"
2021-05-06T15:06:27.4210180Z uploading "assets/sass/elements/_elements.scss"
2021-05-06T15:06:27.5377423Z uploading "assets/sass/elements/_forms.scss"
2021-05-06T15:06:27.6455097Z uploading "assets/sass/elements/_icons.scss"
2021-05-06T15:06:27.7532864Z uploading "assets/sass/elements/_lists_tables.scss"
2021-05-06T15:06:27.8608643Z uploading "assets/sass/elements/_sections.scss"
2021-05-06T15:06:27.9726610Z uploading "assets/sass/global/_global.scss"
2021-05-06T15:06:28.0795937Z uploading "assets/sass/global/_media.scss"
2021-05-06T15:06:28.1859401Z uploading "assets/sass/global/_page.scss"
2021-05-06T15:06:28.2947699Z uploading "assets/sass/global/_panels.scss"
2021-05-06T15:06:28.4008195Z uploading "assets/sass/global/_sidebar.scss"
2021-05-06T15:06:28.5082035Z uploading "assets/sass/global/_site-top.scss"
2021-05-06T15:06:28.6165157Z uploading "assets/sass/global/_typography.scss"
2021-05-06T15:06:28.7240424Z uploading "assets/sass/gutenberg-editor-style.scss"
2021-05-06T15:06:28.8313565Z uploading "assets/sass/libs/_libs.scss"
2021-05-06T15:06:28.9454575Z uploading "assets/sass/libs/_normalize.scss"
2021-05-06T15:06:29.0535494Z uploading "assets/sass/libs/_outdated_browser.scss"
2021-05-06T15:06:29.1610420Z uploading "assets/sass/login-style.scss"
2021-05-06T15:06:29.2793172Z uploading "assets/sass/main.scss"
2021-05-06T15:06:29.3956844Z uploading "assets/sass/wordpress/_comments.scss"
2021-05-06T15:06:29.5031657Z uploading "assets/sass/wordpress/_default-blocks.scss"
2021-05-06T15:06:29.6301176Z uploading "assets/sass/wordpress/_gforms.scss"
2021-05-06T15:06:29.7378587Z uploading "assets/sass/wordpress/_template-parts.scss"
2021-05-06T15:06:29.8451640Z uploading "assets/sass/wordpress/_wordpress.scss"
2021-05-06T15:06:29.9518944Z uploading "changelog.md"
2021-05-06T15:06:30.0593012Z uploading "comments.php"
2021-05-06T15:06:30.1748848Z uploading "dist/acf_extras/acf_scripts.js"
2021-05-06T15:06:30.3099232Z uploading "dist/acf_extras/acf_scripts.min.js"
2021-05-06T15:06:30.4426047Z uploading "dist/admin.css"
2021-05-06T15:06:30.5494373Z uploading "dist/admin.min.css"
2021-05-06T15:06:30.6571124Z uploading "dist/custom-gform.js"
2021-05-06T15:06:30.7745110Z uploading "dist/custom-gform.min.js"
2021-05-06T15:06:30.8811587Z uploading "dist/custom.js"
2021-05-06T15:06:31.0674692Z uploading "dist/custom.min.js"
2021-05-06T15:06:31.2319936Z uploading "dist/customize-controls.js"
2021-05-06T15:06:31.3402157Z uploading "dist/customize-controls.min.js"
2021-05-06T15:06:31.4478344Z uploading "dist/customize-preview.js"
2021-05-06T15:06:31.5568263Z uploading "dist/customize-preview.min.js"
2021-05-06T15:06:31.6642616Z uploading "dist/editor-style.css"
2021-05-06T15:06:31.8853658Z uploading "dist/editor-style.min.css"
2021-05-06T15:06:32.0779837Z uploading "dist/gutenberg-editor-style.css"
2021-05-06T15:06:32.3480515Z uploading "dist/gutenberg-editor-style.min.css"
2021-05-06T15:06:32.5588256Z uploading "dist/login-style.css"
2021-05-06T15:06:32.6654140Z uploading "dist/login-style.min.css"
2021-05-06T15:06:32.7727716Z uploading "dist/main.css"
2021-05-06T15:06:33.0326048Z uploading "dist/main.min.css"
2021-05-06T15:06:33.2486703Z uploading "footer.php"
2021-05-06T15:06:33.3551699Z uploading "functions.php"
2021-05-06T15:06:33.4620843Z uploading "gulpfile.babel.js"
2021-05-06T15:06:33.5941051Z uploading "header.php"
2021-05-06T15:06:33.7020811Z uploading "home.php"
2021-05-06T15:06:33.8106596Z uploading "inc/_custom_queries.php"
2021-05-06T15:06:33.9173307Z uploading "inc/_eccr_functions.php"
2021-05-06T15:06:34.0233053Z uploading "inc/_optional_filters.php"
2021-05-06T15:06:34.1300468Z uploading "inc/acf_extras/_acf_extras.php"
2021-05-06T15:06:34.2383904Z uploading "inc/acf_extras/acf_scripts.js"
2021-05-06T15:06:34.3459199Z uploading "inc/acf_extras/acf_styles.css"
2021-05-06T15:06:34.4541717Z uploading "inc/core/_customizer.php"
2021-05-06T15:06:34.9785858Z uploading "inc/core/_extras.php"
2021-05-06T15:06:34.9792762Z uploading "inc/core/_icon-functions.php"
2021-05-06T15:06:34.9794097Z uploading "inc/core/_ignition_gform_extras.php"
2021-05-06T15:06:34.9796393Z uploading "inc/core/_template-classes.php"
2021-05-06T15:06:34.9895836Z uploading "inc/core/_template-tags.php"
2021-05-06T15:06:35.0970203Z uploading "inc/core/back-compat.php"
2021-05-06T15:06:35.2055546Z uploading "inc/core/dev-helpers.php"
2021-05-06T15:06:35.3227078Z uploading "inc/core/woocommerce.php"
2021-05-06T15:06:35.4308137Z uploading "inc/scrollmagic/_scrollmagic.js"
2021-05-06T15:06:35.5386049Z uploading "inc/scrollmagic/_scrollmagic.php"
2021-05-06T15:06:35.6452392Z uploading "index.php"
2021-05-06T15:06:35.7522359Z uploading "languages/eccr"
2021-05-06T15:06:35.8606037Z uploading "languages/ignition.pot"
2021-05-06T15:06:35.9684495Z uploading "LICENSE"
2021-05-06T15:06:36.0746293Z uploading "package-lock.json"
2021-05-06T15:06:36.3199124Z uploading "package.json"
2021-05-06T15:06:36.4262882Z uploading "page-updates.php"
2021-05-06T15:06:36.5721160Z uploading "page.php"
2021-05-06T15:06:36.6784730Z uploading "README.md"
2021-05-06T15:06:36.7863026Z uploading "screenshot.png"
2021-05-06T15:06:36.9753153Z uploading "search.php"
2021-05-06T15:06:37.0825710Z uploading "searchform.php"
2021-05-06T15:06:37.1874754Z uploading "sidebar-left.php"
2021-05-06T15:06:37.3016408Z uploading "sidebar-right.php"
2021-05-06T15:06:37.4098727Z uploading "sidebar.php"
2021-05-06T15:06:37.5177237Z uploading "single.php"
2021-05-06T15:06:37.6242090Z uploading "style.css"
2021-05-06T15:06:37.7325227Z uploading "template-parts/acf-blocks/_acf-blocks.php"
2021-05-06T15:06:37.8489822Z uploading "template-parts/acf-blocks/boxes/_boxes.scss"
2021-05-06T15:06:37.9576916Z uploading "template-parts/acf-blocks/boxes/boxes.php"
2021-05-06T15:06:38.0655015Z uploading "template-parts/acf-blocks/cards/cards-block.php"
2021-05-06T15:06:38.1730140Z uploading "template-parts/acf-blocks/events/_events.scss"
2021-05-06T15:06:38.2806005Z uploading "template-parts/acf-blocks/events/events.php"
2021-05-06T15:06:38.3868098Z uploading "template-parts/acf-blocks/gallery/gallery-item.php"
2021-05-06T15:06:38.4936287Z uploading "template-parts/acf-blocks/gallery/gallery.php"
2021-05-06T15:06:38.6092092Z uploading "template-parts/acf-blocks/header/_header.scss"
2021-05-06T15:06:38.7166978Z uploading "template-parts/acf-blocks/header/header-block.php"
2021-05-06T15:06:38.8235886Z uploading "template-parts/acf-blocks/newsletters/_newsletter.scss"
2021-05-06T15:06:38.9310886Z uploading "template-parts/acf-blocks/newsletters/newsletters-block.php"
2021-05-06T15:06:39.0387104Z uploading "template-parts/acf-blocks/opportunities/opportunities.php"
2021-05-06T15:06:39.1462825Z uploading "template-parts/acf-blocks/paragraphs/paragraphs-block.php"
2021-05-06T15:06:39.2525435Z uploading "template-parts/acf-blocks/section-menu/section_menu-block.php"
2021-05-06T15:06:39.3685994Z uploading "template-parts/acf-blocks/section-menu/section-menu.scss"
2021-05-06T15:06:39.4760741Z uploading "template-parts/acf-blocks/services/_services.php"
2021-05-06T15:06:39.5834094Z uploading "template-parts/acf-blocks/services/_services.scss"
2021-05-06T15:06:39.6904453Z uploading "template-parts/acf-blocks/services/services.php"
2021-05-06T15:06:39.7990533Z uploading "template-parts/acf-blocks/stories/stories.php"
2021-05-06T15:06:39.9068514Z uploading "template-parts/acf-blocks/text-section/_text-section.scss"
2021-05-06T15:06:40.0148151Z uploading "template-parts/acf-blocks/text-section/text-section.php"
2021-05-06T15:06:40.1241781Z uploading "template-parts/acf-blocks/timeline/_timeline.scss"
2021-05-06T15:06:40.2324931Z uploading "template-parts/acf-blocks/timeline/timeline-block.php"
2021-05-06T15:06:40.3407185Z uploading "template-parts/eccr_jobs/card.php"
2021-05-06T15:06:40.4477079Z uploading "template-parts/eccr_jobs/content.php"
2021-05-06T15:06:40.5558844Z uploading "template-parts/eccr_newsletter/card.php"
2021-05-06T15:06:40.6623496Z uploading "template-parts/eccr_stories/_stories.scss"
2021-05-06T15:06:40.7679797Z uploading "template-parts/eccr_stories/card.php"
2021-05-06T15:06:40.8849731Z uploading "template-parts/event/_events.scss"
2021-05-06T15:06:40.9916176Z uploading "template-parts/event/card.php"
2021-05-06T15:06:41.0995967Z uploading "template-parts/event/content.php"
2021-05-06T15:06:41.2168916Z uploading "template-parts/footer/footer-widgets.php"
2021-05-06T15:06:41.3241699Z uploading "template-parts/footer/site-info.php"
2021-05-06T15:06:41.4323512Z uploading "template-parts/galleries/_gallery.php"
2021-05-06T15:06:41.5400088Z uploading "template-parts/galleries/_gallery.scss"
2021-05-06T15:06:41.6470956Z uploading "template-parts/galleries/card.php"
2021-05-06T15:06:41.7548667Z uploading "template-parts/galleries/content.php"
2021-05-06T15:06:41.8629369Z uploading "template-parts/page/card.php"
2021-05-06T15:06:41.9787703Z uploading "template-parts/page/content.php"
2021-05-06T15:06:42.0955863Z uploading "template-parts/post/card.php"
2021-05-06T15:06:42.2130795Z uploading "template-parts/post/content.php"
2021-05-06T15:06:42.3212725Z uploading "template-parts/post/post.scss"
2021-05-06T15:06:42.4284931Z uploading "template-parts/readme.md"
2021-05-06T15:06:42.5376317Z uploading "template-parts/site-top/default-header.php"
2021-05-06T15:06:42.6443675Z uploading "template-parts/site-top/site-top.php"
2021-05-06T15:06:42.7538311Z uploading "wpgulp.config.js"
2021-05-06T15:06:42.8615081Z ----------------------------------------------------------------
2021-05-06T15:06:42.8616998Z πŸŽ‰ Sync complete. Saving current server state to "/eccretreat.org/public_html/wp-content/themes/eccr/.ftp-deploy-sync-state.json"
2021-05-06T15:06:43.0247460Z ----------------------------------------------------------------
2021-05-06T15:06:43.0255872Z Time spent hashing:               1.3 seconds
2021-05-06T15:06:43.0259939Z Time spent connecting to server:  268 milliseconds
2021-05-06T15:06:43.0261228Z Time spent deploying:             45.3 seconds (106 kB/second)
2021-05-06T15:06:43.0264623Z   - changing dirs:                5.9 seconds
2021-05-06T15:06:43.0267111Z   - logging:                      156 milliseconds
2021-05-06T15:06:43.0269766Z ----------------------------------------------------------------
2021-05-06T15:06:43.0272341Z Total time:                       47.4 seconds
2021-05-06T15:06:43.0274694Z ----------------------------------------------------------------
2021-05-06T15:06:43.0457628Z Post job cleanup.
2021-05-06T15:06:43.1541253Z [command]/usr/bin/git version
2021-05-06T15:06:43.1596190Z git version 2.31.1
2021-05-06T15:06:43.1635918Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-05-06T15:06:43.1677640Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-05-06T15:06:43.1939218Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-05-06T15:06:43.1973646Z http.https://github.com/.extraheader
2021-05-06T15:06:43.1985944Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2021-05-06T15:06:43.2026488Z [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' || :
2021-05-06T15:06:43.2366892Z Cleaning up orphan processes
krisalcordo commented 3 years ago

Having similar issue. Ignores just being ignored on my end.

SamKirkland commented 3 years ago

Hello @jp-albrecht and @kjaonline

I made some changes to the exclude code in version 4.1.0 to properly match folders (the / was causing problems) Going forward the node_modules folder should now be excluded and writing exclude rules should be more straightforward.

Please upgrade and let me know how it goes!

krisalcordo commented 3 years ago

Thanks @SamKirkland, I'll give it a shot. Appreciate all the hard work!