JamesIves / github-pages-deploy-action

🚀 Automatically deploy your project to GitHub Pages using GitHub Actions. This action can be configured to push your production-ready code into any branch you'd like.
https://github.com/marketplace/actions/deploy-to-github-pages
MIT License
4.27k stars 359 forks source link

Permission denied after second run #1045

Closed freearhey closed 1 year ago

freearhey commented 2 years ago

Describe the bug

Returns an error if you run the action twice in the same job:

fatal: cannot update the ref 'refs/heads/gh-pages': unable to append to '/home/runner/work/repo/repo/.git/logs/refs/heads/gh-pages': Permission denied
...
Error: The deploy step encountered an error: There was an error creating the worktree: The process '/usr/bin/git' failed with exit code 128 ❌ ❌
Notice: Deployment failed! ❌

Reproduction Steps

      - uses: tibdex/github-app-token@v1
        id: create-app-token
        with:
          app_id: ${{ secrets.APP_ID }}
          private_key: ${{ secrets.APP_PRIVATE_KEY }}
      - uses: JamesIves/github-pages-deploy-action@v4.2.5
        with:
          branch: gh-pages
          folder: .gh-pages
          token: ${{ steps.create-app-token.outputs.token }}
      - uses: JamesIves/github-pages-deploy-action@v4.2.5
        with:
          repository-name: org/api
          branch: gh-pages
          folder: .api
          token: ${{ steps.create-app-token.outputs.token }}

Additional Comments

The error appears only after the second start. If you run the action only once (no matter with or without repository-name property) it works fine.

JamesIves commented 2 years ago

Can you copy/paste the full log?

freearhey commented 2 years ago
Log ``` 2022-02-24T03:09:32.8988093Z Requested labels: ubuntu-latest 2022-02-24T03:09:32.8988149Z Job defined at: iptv-org/iptv/.github/workflows/auto-update.yml@refs/heads/master 2022-02-24T03:09:32.8988198Z Waiting for a runner to pick up this job... 2022-02-24T03:09:33.5755830Z Job is waiting for a hosted runner to come online. 2022-02-24T03:09:36.7652352Z Job is about to start running on the hosted runner: Hosted Agent (hosted) 2022-02-24T03:09:40.3337504Z Current runner version: '2.287.1' 2022-02-24T03:09:40.3366178Z ##[group]Operating System 2022-02-24T03:09:40.3366954Z Ubuntu 2022-02-24T03:09:40.3367478Z 20.04.3 2022-02-24T03:09:40.3367983Z LTS 2022-02-24T03:09:40.3368512Z ##[endgroup] 2022-02-24T03:09:40.3369046Z ##[group]Virtual Environment 2022-02-24T03:09:40.3369644Z Environment: ubuntu-20.04 2022-02-24T03:09:40.3370206Z Version: 20220220.1 2022-02-24T03:09:40.3371022Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20220220.1/images/linux/Ubuntu2004-Readme.md 2022-02-24T03:09:40.3372020Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F20220220.1 2022-02-24T03:09:40.3372791Z ##[endgroup] 2022-02-24T03:09:40.3373377Z ##[group]Virtual Environment Provisioner 2022-02-24T03:09:40.3374012Z 1.0.0.0-main-20220215-1 2022-02-24T03:09:40.3374504Z ##[endgroup] 2022-02-24T03:09:40.3375937Z ##[group]GITHUB_TOKEN Permissions 2022-02-24T03:09:40.3376803Z Actions: write 2022-02-24T03:09:40.3377482Z Checks: write 2022-02-24T03:09:40.3378052Z Contents: write 2022-02-24T03:09:40.3378607Z Deployments: write 2022-02-24T03:09:40.3379146Z Discussions: write 2022-02-24T03:09:40.3379654Z Issues: write 2022-02-24T03:09:40.3380186Z Metadata: read 2022-02-24T03:09:40.3380734Z Packages: write 2022-02-24T03:09:40.3381254Z Pages: write 2022-02-24T03:09:40.3381799Z PullRequests: write 2022-02-24T03:09:40.3382362Z RepositoryProjects: write 2022-02-24T03:09:40.3382905Z SecurityEvents: write 2022-02-24T03:09:40.3383450Z Statuses: write 2022-02-24T03:09:40.3384002Z ##[endgroup] 2022-02-24T03:09:40.3387957Z Secret source: Actions 2022-02-24T03:09:40.3388716Z Prepare workflow directory 2022-02-24T03:09:40.4280703Z Prepare all required actions 2022-02-24T03:09:40.4466348Z Getting action download info 2022-02-24T03:09:40.6966929Z Download action repository 'actions/checkout@v2' (SHA:ec3a7ce113134d7a93b817d10a8272cb61118579) 2022-02-24T03:09:40.9526060Z Download action repository 'tibdex/github-app-token@v1' (SHA:7ce9ffdcdeb2ba82b01b51d6584a6a85872336d4) 2022-02-24T03:09:41.1448296Z Download action repository 'actions/setup-node@v2' (SHA:1f8c6b94b26d0feae1e387ca63ccbdc44d27b561) 2022-02-24T03:09:41.3520122Z Download action repository 'actions/download-artifact@v2' (SHA:f023be2c48cc18debc3bacd34cb396e0295e2869) 2022-02-24T03:09:41.4883780Z Download action repository 'actions/upload-artifact@v2' (SHA:82c141cc518b40d92cc801eee768e7aafc9c2fa2) 2022-02-24T03:09:41.6174174Z Download action repository 'repo-sync/pull-request@v2' (SHA:65194d8015be7624d231796ddee1cd52a5023cb3) 2022-02-24T03:09:41.8415769Z Download action repository 'juliangruber/merge-pull-request-action@v1' (SHA:7439e506401d6c1d5339c478b7cde91fec0037a9) 2022-02-24T03:09:45.3161437Z Download action repository 'JamesIves/github-pages-deploy-action@4.1.1' (SHA:164583b9e44b4fc5910e78feb607ea7c98d3c7b9) 2022-02-24T03:09:46.2168813Z ##[group]Build container for action use: '/home/runner/work/_actions/repo-sync/pull-request/v2/Dockerfile'. 2022-02-24T03:09:46.2236864Z ##[command]/usr/bin/docker build -t 7db2d7:d0bbc3d2b99d42c0b973577e40b131ef -f "/home/runner/work/_actions/repo-sync/pull-request/v2/Dockerfile" "/home/runner/work/_actions/repo-sync/pull-request/v2" 2022-02-24T03:09:46.3327860Z Sending build context to Docker daemon 28.16kB 2022-02-24T03:09:46.3336322Z 2022-02-24T03:09:46.3663098Z Step 1/5 : FROM alpine 2022-02-24T03:09:46.5801161Z latest: Pulling from library/alpine 2022-02-24T03:09:46.6338383Z 59bf1c3509f3: Already exists 2022-02-24T03:09:46.6865129Z Digest: sha256:21a3deaa0d32a8057914f36584b5288d2e5ecc984380bc0118285c70fa8c9300 2022-02-24T03:09:46.6881449Z Status: Downloaded newer image for alpine:latest 2022-02-24T03:09:46.6893832Z ---> c059bfaa849c 2022-02-24T03:09:46.6895058Z Step 2/5 : LABEL "name"="GitHub Pull Request Action" "homepage"="https://github.com/marketplace/actions/github-pull-request" "repository"="https://github.com/repo-sync/pull-request" "maintainer"="Wei He " 2022-02-24T03:09:46.8464724Z ---> Running in bee2cedb0be7 2022-02-24T03:09:47.0148334Z Removing intermediate container bee2cedb0be7 2022-02-24T03:09:47.0149968Z ---> 8fe1abc60b19 2022-02-24T03:09:47.0153117Z Step 3/5 : RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && apk add --no-cache git hub bash 2022-02-24T03:09:47.0304316Z ---> Running in 0199ef4aa376 2022-02-24T03:09:47.3379232Z fetch https://dl-cdn.alpinelinux.org/alpine/v3.15/main/x86_64/APKINDEX.tar.gz 2022-02-24T03:09:47.4133263Z fetch https://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz 2022-02-24T03:09:47.5387013Z fetch http://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz 2022-02-24T03:09:47.7095753Z (1/12) Installing ncurses-terminfo-base (6.3_p20211120-r0) 2022-02-24T03:09:47.7143450Z (2/12) Installing ncurses-libs (6.3_p20211120-r0) 2022-02-24T03:09:47.7241122Z (3/12) Installing readline (8.1.1-r0) 2022-02-24T03:09:47.7288061Z (4/12) Installing bash (5.1.16-r0) 2022-02-24T03:09:47.7447595Z Executing bash-5.1.16-r0.post-install 2022-02-24T03:09:47.7467637Z (5/12) Installing ca-certificates (20211220-r0) 2022-02-24T03:09:47.7607609Z (6/12) Installing brotli-libs (1.0.9-r5) 2022-02-24T03:09:47.7706280Z (7/12) Installing nghttp2-libs (1.46.0-r0) 2022-02-24T03:09:47.7738969Z (8/12) Installing libcurl (7.80.0-r0) 2022-02-24T03:09:47.7826672Z (9/12) Installing expat (2.4.5-r0) 2022-02-24T03:09:47.7863227Z (10/12) Installing pcre2 (10.39-r0) 2022-02-24T03:09:47.7956014Z (11/12) Installing git (2.34.1-r0) 2022-02-24T03:09:47.9316005Z (12/12) Installing hub (2.14.2-r3) 2022-02-24T03:09:48.0006880Z Executing busybox-1.34.1-r3.trigger 2022-02-24T03:09:48.0042865Z Executing ca-certificates-20211220-r0.trigger 2022-02-24T03:09:48.0408950Z OK: 27 MiB in 26 packages 2022-02-24T03:09:49.0236806Z Removing intermediate container 0199ef4aa376 2022-02-24T03:09:49.0237593Z ---> 9a536783dc9a 2022-02-24T03:09:49.0238169Z Step 4/5 : ADD *.sh / 2022-02-24T03:09:50.0095458Z ---> 6d74a20fbb48 2022-02-24T03:09:50.0095902Z Step 5/5 : ENTRYPOINT ["/entrypoint.sh"] 2022-02-24T03:09:50.0277501Z ---> Running in 6e195ff07a55 2022-02-24T03:09:51.0083450Z Removing intermediate container 6e195ff07a55 2022-02-24T03:09:51.0087887Z ---> 27c19cfdca16 2022-02-24T03:09:51.0088957Z Successfully built 27c19cfdca16 2022-02-24T03:09:51.0105189Z Successfully tagged 7db2d7:d0bbc3d2b99d42c0b973577e40b131ef 2022-02-24T03:09:51.0132481Z ##[endgroup] 2022-02-24T03:09:51.0511475Z ##[group]Run actions/checkout@v2 2022-02-24T03:09:51.0511907Z with: 2022-02-24T03:09:51.0512251Z fetch-depth: 0 2022-02-24T03:09:51.0512617Z repository: iptv-org/iptv 2022-02-24T03:09:51.0513211Z token: *** 2022-02-24T03:09:51.0513556Z ssh-strict: true 2022-02-24T03:09:51.0513925Z persist-credentials: true 2022-02-24T03:09:51.0514295Z clean: true 2022-02-24T03:09:51.0514638Z lfs: false 2022-02-24T03:09:51.0514971Z submodules: false 2022-02-24T03:09:51.0515321Z ##[endgroup] 2022-02-24T03:09:51.2677105Z Syncing repository: iptv-org/iptv 2022-02-24T03:09:51.2678981Z ##[group]Getting Git version info 2022-02-24T03:09:51.2679609Z Working directory is '/home/runner/work/iptv/iptv' 2022-02-24T03:09:51.2680331Z [command]/usr/bin/git version 2022-02-24T03:09:51.2765643Z git version 2.35.1 2022-02-24T03:09:51.2766818Z ##[endgroup] 2022-02-24T03:09:51.2770450Z Deleting the contents of '/home/runner/work/iptv/iptv' 2022-02-24T03:09:51.2792968Z ##[group]Initializing the repository 2022-02-24T03:09:51.2793450Z [command]/usr/bin/git init /home/runner/work/iptv/iptv 2022-02-24T03:09:51.2860687Z hint: Using 'master' as the name for the initial branch. This default branch name 2022-02-24T03:09:51.2861354Z hint: is subject to change. To configure the initial branch name to use in all 2022-02-24T03:09:51.2861924Z hint: of your new repositories, which will suppress this warning, call: 2022-02-24T03:09:51.2862374Z hint: 2022-02-24T03:09:51.2862841Z hint: git config --global init.defaultBranch 2022-02-24T03:09:51.2863252Z hint: 2022-02-24T03:09:51.2863741Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2022-02-24T03:09:51.2864618Z hint: 'development'. The just-created branch can be renamed via this command: 2022-02-24T03:09:51.2865062Z hint: 2022-02-24T03:09:51.2865443Z hint: git branch -m 2022-02-24T03:09:51.2865896Z Initialized empty Git repository in /home/runner/work/iptv/iptv/.git/ 2022-02-24T03:09:51.2866594Z [command]/usr/bin/git remote add origin https://github.com/iptv-org/iptv 2022-02-24T03:09:51.2903868Z ##[endgroup] 2022-02-24T03:09:51.2904533Z ##[group]Disabling automatic garbage collection 2022-02-24T03:09:51.2905208Z [command]/usr/bin/git config --local gc.auto 0 2022-02-24T03:09:51.2926070Z ##[endgroup] 2022-02-24T03:09:51.2967250Z ##[group]Setting up auth 2022-02-24T03:09:51.2968013Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-02-24T03:09:51.2990080Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-02-24T03:09:51.3299808Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-02-24T03:09:51.3323811Z [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' || : 2022-02-24T03:09:51.3599184Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2022-02-24T03:09:51.3645749Z ##[endgroup] 2022-02-24T03:09:51.3646634Z ##[group]Fetching the repository 2022-02-24T03:09:51.3656306Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2022-02-24T03:09:51.6484205Z remote: Enumerating objects: 139692, done. 2022-02-24T03:09:51.6485062Z remote: Counting objects: 0% (1/579) 2022-02-24T03:09:51.6485955Z remote: Counting objects: 1% (6/579) 2022-02-24T03:09:51.6486439Z remote: Counting objects: 2% (12/579) 2022-02-24T03:09:51.6486862Z remote: Counting objects: 3% (18/579) 2022-02-24T03:09:51.6487378Z remote: Counting objects: 4% (24/579) 2022-02-24T03:09:51.6487886Z remote: Counting objects: 5% (29/579) 2022-02-24T03:09:51.6488618Z remote: Counting objects: 6% (35/579) 2022-02-24T03:09:51.6489030Z remote: Counting objects: 7% (41/579) 2022-02-24T03:09:51.6489505Z remote: Counting objects: 8% (47/579) 2022-02-24T03:09:51.6489911Z remote: Counting objects: 9% (53/579) 2022-02-24T03:09:51.6490314Z remote: Counting objects: 10% (58/579) 2022-02-24T03:09:51.6490714Z remote: Counting objects: 11% (64/579) 2022-02-24T03:09:51.6491115Z remote: Counting objects: 12% (70/579) 2022-02-24T03:09:51.6491529Z remote: Counting objects: 13% (76/579) 2022-02-24T03:09:51.6491923Z remote: Counting objects: 14% (82/579) 2022-02-24T03:09:51.6492317Z remote: Counting objects: 15% (87/579) 2022-02-24T03:09:51.6492703Z remote: Counting objects: 16% (93/579) 2022-02-24T03:09:51.6493094Z remote: Counting objects: 17% (99/579) 2022-02-24T03:09:51.6493502Z remote: Counting objects: 18% (105/579) 2022-02-24T03:09:51.6493936Z remote: Counting objects: 19% (111/579) 2022-02-24T03:09:51.6494352Z remote: Counting objects: 20% (116/579) 2022-02-24T03:09:51.6494758Z remote: Counting objects: 21% (122/579) 2022-02-24T03:09:51.6495173Z remote: Counting objects: 22% (128/579) 2022-02-24T03:09:51.6495570Z remote: Counting objects: 23% (134/579) 2022-02-24T03:09:51.6495965Z remote: Counting objects: 24% (139/579) 2022-02-24T03:09:51.6496364Z remote: Counting objects: 25% (145/579) 2022-02-24T03:09:51.6496762Z remote: Counting objects: 26% (151/579) 2022-02-24T03:09:51.6497172Z remote: Counting objects: 27% (157/579) 2022-02-24T03:09:51.6497677Z remote: Counting objects: 28% (163/579) 2022-02-24T03:09:51.6498064Z remote: Counting objects: 29% (168/579) 2022-02-24T03:09:51.6498463Z remote: Counting objects: 30% (174/579) 2022-02-24T03:09:51.6498858Z remote: Counting objects: 31% (180/579) 2022-02-24T03:09:51.6499263Z remote: Counting objects: 32% (186/579) 2022-02-24T03:09:51.6499661Z remote: Counting objects: 33% (192/579) 2022-02-24T03:09:51.6500066Z remote: Counting objects: 34% (197/579) 2022-02-24T03:09:51.6500472Z remote: Counting objects: 35% (203/579) 2022-02-24T03:09:51.6500859Z remote: Counting objects: 36% (209/579) 2022-02-24T03:09:51.6501248Z remote: Counting objects: 37% (215/579) 2022-02-24T03:09:51.6501651Z remote: Counting objects: 38% (221/579) 2022-02-24T03:09:51.6502043Z remote: Counting objects: 39% (226/579) 2022-02-24T03:09:51.6502438Z remote: Counting objects: 40% (232/579) 2022-02-24T03:09:51.6502846Z remote: Counting objects: 41% (238/579) 2022-02-24T03:09:51.6503241Z remote: Counting objects: 42% (244/579) 2022-02-24T03:09:51.6503650Z remote: Counting objects: 43% (249/579) 2022-02-24T03:09:51.6504038Z remote: Counting objects: 44% (255/579) 2022-02-24T03:09:51.6504438Z remote: Counting objects: 45% (261/579) 2022-02-24T03:09:51.6506697Z remote: Counting objects: 46% (267/579) 2022-02-24T03:09:51.6507325Z remote: Counting objects: 47% (273/579) 2022-02-24T03:09:51.6554569Z remote: Counting objects: 48% (278/579) 2022-02-24T03:09:51.6554983Z remote: Counting objects: 49% (284/579) 2022-02-24T03:09:51.6555386Z remote: Counting objects: 50% (290/579) 2022-02-24T03:09:51.6555794Z remote: Counting objects: 51% (296/579) 2022-02-24T03:09:51.6556186Z remote: Counting objects: 52% (302/579) 2022-02-24T03:09:51.6556587Z remote: Counting objects: 53% (307/579) 2022-02-24T03:09:51.6556982Z remote: Counting objects: 54% (313/579) 2022-02-24T03:09:51.6557389Z remote: Counting objects: 55% (319/579) 2022-02-24T03:09:51.6557772Z remote: Counting objects: 56% (325/579) 2022-02-24T03:09:51.6558164Z remote: Counting objects: 57% (331/579) 2022-02-24T03:09:51.6558566Z remote: Counting objects: 58% (336/579) 2022-02-24T03:09:51.6559085Z remote: Counting objects: 59% (342/579) 2022-02-24T03:09:51.6559483Z remote: Counting objects: 60% (348/579) 2022-02-24T03:09:51.6559876Z remote: Counting objects: 61% (354/579) 2022-02-24T03:09:51.6560265Z remote: Counting objects: 62% (359/579) 2022-02-24T03:09:51.6560656Z remote: Counting objects: 63% (365/579) 2022-02-24T03:09:51.6561129Z remote: Counting objects: 64% (371/579) 2022-02-24T03:09:51.6561505Z remote: Counting objects: 65% (377/579) 2022-02-24T03:09:51.6561903Z remote: Counting objects: 66% (383/579) 2022-02-24T03:09:51.6562298Z remote: Counting objects: 67% (388/579) 2022-02-24T03:09:51.6562693Z remote: Counting objects: 68% (394/579) 2022-02-24T03:09:51.6563087Z remote: Counting objects: 69% (400/579) 2022-02-24T03:09:51.6563473Z remote: Counting objects: 70% (406/579) 2022-02-24T03:09:51.6563862Z remote: Counting objects: 71% (412/579) 2022-02-24T03:09:51.6564254Z remote: Counting objects: 72% (417/579) 2022-02-24T03:09:51.6564843Z remote: Counting objects: 73% (423/579) 2022-02-24T03:09:51.6565236Z remote: Counting objects: 74% (429/579) 2022-02-24T03:09:51.6565622Z remote: Counting objects: 75% (435/579) 2022-02-24T03:09:51.6566020Z remote: Counting objects: 76% (441/579) 2022-02-24T03:09:51.6566412Z remote: Counting objects: 77% (446/579) 2022-02-24T03:09:51.6566806Z remote: Counting objects: 78% (452/579) 2022-02-24T03:09:51.6567187Z remote: Counting objects: 79% (458/579) 2022-02-24T03:09:51.6567570Z remote: Counting objects: 80% (464/579) 2022-02-24T03:09:51.6568043Z remote: Counting objects: 81% (469/579) 2022-02-24T03:09:51.6568438Z remote: Counting objects: 82% (475/579) 2022-02-24T03:09:51.6568837Z remote: Counting objects: 83% (481/579) 2022-02-24T03:09:51.6569229Z remote: Counting objects: 84% (487/579) 2022-02-24T03:09:51.6569628Z remote: Counting objects: 85% (493/579) 2022-02-24T03:09:51.6570018Z remote: Counting objects: 86% (498/579) 2022-02-24T03:09:51.6570414Z remote: Counting objects: 87% (504/579) 2022-02-24T03:09:51.6570800Z remote: Counting objects: 88% (510/579) 2022-02-24T03:09:51.6571188Z remote: Counting objects: 89% (516/579) 2022-02-24T03:09:51.6571577Z remote: Counting objects: 90% (522/579) 2022-02-24T03:09:51.6571963Z remote: Counting objects: 91% (527/579) 2022-02-24T03:09:51.6572349Z remote: Counting objects: 92% (533/579) 2022-02-24T03:09:51.6572733Z remote: Counting objects: 93% (539/579) 2022-02-24T03:09:51.6573121Z remote: Counting objects: 94% (545/579) 2022-02-24T03:09:51.6573504Z remote: Counting objects: 95% (551/579) 2022-02-24T03:09:51.6573891Z remote: Counting objects: 96% (556/579) 2022-02-24T03:09:51.6574284Z remote: Counting objects: 97% (562/579) 2022-02-24T03:09:51.6574673Z remote: Counting objects: 98% (568/579) 2022-02-24T03:09:51.6575058Z remote: Counting objects: 99% (574/579) 2022-02-24T03:09:51.6575441Z remote: Counting objects: 100% (579/579) 2022-02-24T03:09:51.6575850Z remote: Counting objects: 100% (579/579), done. 2022-02-24T03:09:51.6576308Z remote: Compressing objects: 0% (1/323) 2022-02-24T03:09:51.6982395Z remote: Compressing objects: 1% (4/323) 2022-02-24T03:09:51.6992781Z remote: Compressing objects: 2% (7/323) 2022-02-24T03:09:51.7009395Z remote: Compressing objects: 3% (10/323) 2022-02-24T03:09:51.7041396Z remote: Compressing objects: 4% (13/323) 2022-02-24T03:09:51.7045389Z remote: Compressing objects: 5% (17/323) 2022-02-24T03:09:51.7066396Z remote: Compressing objects: 6% (20/323) 2022-02-24T03:09:51.7088338Z remote: Compressing objects: 7% (23/323) 2022-02-24T03:09:51.7340216Z remote: Compressing objects: 8% (26/323) 2022-02-24T03:09:51.7376269Z remote: Compressing objects: 9% (30/323) 2022-02-24T03:09:51.7439240Z remote: Compressing objects: 10% (33/323) 2022-02-24T03:09:51.7482223Z remote: Compressing objects: 11% (36/323) 2022-02-24T03:09:51.7490555Z remote: Compressing objects: 12% (39/323) 2022-02-24T03:09:51.7711554Z remote: Compressing objects: 13% (42/323) 2022-02-24T03:09:51.7728447Z remote: Compressing objects: 14% (46/323) 2022-02-24T03:09:51.7791237Z remote: Compressing objects: 15% (49/323) 2022-02-24T03:09:51.7961486Z remote: Compressing objects: 16% (52/323) 2022-02-24T03:09:51.8007736Z remote: Compressing objects: 17% (55/323) 2022-02-24T03:09:51.8075360Z remote: Compressing objects: 18% (59/323) 2022-02-24T03:09:51.8093948Z remote: Compressing objects: 19% (62/323) 2022-02-24T03:09:51.8167710Z remote: Compressing objects: 20% (65/323) 2022-02-24T03:09:51.8257931Z remote: Compressing objects: 21% (68/323) 2022-02-24T03:09:51.8337776Z remote: Compressing objects: 22% (72/323) 2022-02-24T03:09:51.8398291Z remote: Compressing objects: 23% (75/323) 2022-02-24T03:09:51.8398842Z remote: Compressing objects: 24% (78/323) 2022-02-24T03:09:51.8399366Z remote: Compressing objects: 25% (81/323) 2022-02-24T03:09:51.8431195Z remote: Compressing objects: 26% (84/323) 2022-02-24T03:09:51.8446862Z remote: Compressing objects: 27% (88/323) 2022-02-24T03:09:51.8470783Z remote: Compressing objects: 28% (91/323) 2022-02-24T03:09:51.8495484Z remote: Compressing objects: 29% (94/323) 2022-02-24T03:09:51.8539647Z remote: Compressing objects: 30% (97/323) 2022-02-24T03:09:51.8556324Z remote: Compressing objects: 31% (101/323) 2022-02-24T03:09:51.8573868Z remote: Compressing objects: 32% (104/323) 2022-02-24T03:09:51.8588181Z remote: Compressing objects: 33% (107/323) 2022-02-24T03:09:51.8603098Z remote: Compressing objects: 34% (110/323) 2022-02-24T03:09:51.8639061Z remote: Compressing objects: 35% (114/323) 2022-02-24T03:09:51.8676666Z remote: Compressing objects: 36% (117/323) 2022-02-24T03:09:51.8690106Z remote: Compressing objects: 37% (120/323) 2022-02-24T03:09:51.8698575Z remote: Compressing objects: 38% (123/323) 2022-02-24T03:09:51.8711205Z remote: Compressing objects: 39% (126/323) 2022-02-24T03:09:51.8724601Z remote: Compressing objects: 40% (130/323) 2022-02-24T03:09:51.8727417Z remote: Compressing objects: 41% (133/323) 2022-02-24T03:09:51.8740338Z remote: Compressing objects: 42% (136/323) 2022-02-24T03:09:51.8770369Z remote: Compressing objects: 43% (139/323) 2022-02-24T03:09:51.8796903Z remote: Compressing objects: 44% (143/323) 2022-02-24T03:09:51.8839273Z remote: Compressing objects: 45% (146/323) 2022-02-24T03:09:51.8978569Z remote: Compressing objects: 46% (149/323) 2022-02-24T03:09:51.9069309Z remote: Compressing objects: 47% (152/323) 2022-02-24T03:09:51.9225306Z remote: Compressing objects: 48% (156/323) 2022-02-24T03:09:51.9264759Z remote: Compressing objects: 49% (159/323) 2022-02-24T03:09:51.9274872Z remote: Compressing objects: 50% (162/323) 2022-02-24T03:09:51.9318241Z remote: Compressing objects: 51% (165/323) 2022-02-24T03:09:51.9335682Z remote: Compressing objects: 52% (168/323) 2022-02-24T03:09:51.9363005Z remote: Compressing objects: 53% (172/323) 2022-02-24T03:09:51.9385092Z remote: Compressing objects: 54% (175/323) 2022-02-24T03:09:51.9431296Z remote: Compressing objects: 55% (178/323) 2022-02-24T03:09:51.9531903Z remote: Compressing objects: 56% (181/323) 2022-02-24T03:09:51.9538387Z remote: Compressing objects: 57% (185/323) 2022-02-24T03:09:51.9548460Z remote: Compressing objects: 58% (188/323) 2022-02-24T03:09:51.9564574Z remote: Compressing objects: 59% (191/323) 2022-02-24T03:09:51.9628956Z remote: Compressing objects: 60% (194/323) 2022-02-24T03:09:51.9639918Z remote: Compressing objects: 61% (198/323) 2022-02-24T03:09:51.9661557Z remote: Compressing objects: 62% (201/323) 2022-02-24T03:09:51.9689678Z remote: Compressing objects: 63% (204/323) 2022-02-24T03:09:51.9898521Z remote: Compressing objects: 64% (207/323) 2022-02-24T03:09:52.0301491Z remote: Compressing objects: 65% (210/323) 2022-02-24T03:09:52.0329346Z remote: Compressing objects: 66% (214/323) 2022-02-24T03:09:52.0356051Z remote: Compressing objects: 67% (217/323) 2022-02-24T03:09:52.0426435Z remote: Compressing objects: 68% (220/323) 2022-02-24T03:09:52.0433930Z remote: Compressing objects: 69% (223/323) 2022-02-24T03:09:52.0504035Z remote: Compressing objects: 70% (227/323) 2022-02-24T03:09:52.0572841Z remote: Compressing objects: 71% (230/323) 2022-02-24T03:09:52.0650207Z remote: Compressing objects: 72% (233/323) 2022-02-24T03:09:52.0696782Z remote: Compressing objects: 73% (236/323) 2022-02-24T03:09:52.0853161Z remote: Compressing objects: 74% (240/323) 2022-02-24T03:09:52.0902270Z remote: Compressing objects: 75% (243/323) 2022-02-24T03:09:52.0981742Z remote: Compressing objects: 76% (246/323) 2022-02-24T03:09:52.0997654Z remote: Compressing objects: 77% (249/323) 2022-02-24T03:09:52.1015744Z remote: Compressing objects: 78% (252/323) 2022-02-24T03:09:52.1019136Z remote: Compressing objects: 79% (256/323) 2022-02-24T03:09:52.1044825Z remote: Compressing objects: 80% (259/323) 2022-02-24T03:09:52.1070870Z remote: Compressing objects: 81% (262/323) 2022-02-24T03:09:52.1085080Z remote: Compressing objects: 82% (265/323) 2022-02-24T03:09:52.1089328Z remote: Compressing objects: 83% (269/323) 2022-02-24T03:09:52.1089755Z remote: Compressing objects: 84% (272/323) 2022-02-24T03:09:52.1090188Z remote: Compressing objects: 85% (275/323) 2022-02-24T03:09:52.1092363Z remote: Compressing objects: 86% (278/323) 2022-02-24T03:09:52.1103609Z remote: Compressing objects: 87% (282/323) 2022-02-24T03:09:52.1106473Z remote: Compressing objects: 88% (285/323) 2022-02-24T03:09:52.1106944Z remote: Compressing objects: 89% (288/323) 2022-02-24T03:09:52.1107376Z remote: Compressing objects: 90% (291/323) 2022-02-24T03:09:52.1109042Z remote: Compressing objects: 91% (294/323) 2022-02-24T03:09:52.1109517Z remote: Compressing objects: 92% (298/323) 2022-02-24T03:09:52.1110028Z remote: Compressing objects: 93% (301/323) 2022-02-24T03:09:52.1111502Z remote: Compressing objects: 94% (304/323) 2022-02-24T03:09:52.1112607Z remote: Compressing objects: 95% (307/323) 2022-02-24T03:09:52.1125549Z remote: Compressing objects: 96% (311/323) 2022-02-24T03:09:52.1125996Z remote: Compressing objects: 97% (314/323) 2022-02-24T03:09:52.1126420Z remote: Compressing objects: 98% (317/323) 2022-02-24T03:09:52.1126829Z remote: Compressing objects: 99% (320/323) 2022-02-24T03:09:52.1127238Z remote: Compressing objects: 100% (323/323) 2022-02-24T03:09:52.1127660Z remote: Compressing objects: 100% (323/323), done. 2022-02-24T03:09:52.1357483Z Receiving objects: 0% (1/139692) 2022-02-24T03:09:52.1586979Z Receiving objects: 1% (1397/139692) 2022-02-24T03:09:52.1820506Z Receiving objects: 2% (2794/139692) 2022-02-24T03:09:52.2010979Z Receiving objects: 3% (4191/139692) 2022-02-24T03:09:52.2203552Z Receiving objects: 4% (5588/139692) 2022-02-24T03:09:52.2379424Z Receiving objects: 5% (6985/139692) 2022-02-24T03:09:52.2574246Z Receiving objects: 6% (8382/139692) 2022-02-24T03:09:52.2759291Z Receiving objects: 7% (9779/139692) 2022-02-24T03:09:52.2914253Z Receiving objects: 8% (11176/139692) 2022-02-24T03:09:52.3100107Z Receiving objects: 9% (12573/139692) 2022-02-24T03:09:52.3297943Z Receiving objects: 10% (13970/139692) 2022-02-24T03:09:52.3491497Z Receiving objects: 11% (15367/139692) 2022-02-24T03:09:52.3645266Z Receiving objects: 12% (16764/139692) 2022-02-24T03:09:52.3790307Z Receiving objects: 13% (18160/139692) 2022-02-24T03:09:52.4689782Z Receiving objects: 14% (19557/139692) 2022-02-24T03:09:52.5137031Z Receiving objects: 15% (20954/139692) 2022-02-24T03:09:52.8970566Z Receiving objects: 16% (22351/139692) 2022-02-24T03:09:53.0219363Z Receiving objects: 17% (23748/139692), 13.19 MiB | 26.37 MiB/s 2022-02-24T03:09:53.1152421Z Receiving objects: 18% (25145/139692), 13.19 MiB | 26.37 MiB/s 2022-02-24T03:09:53.1547674Z Receiving objects: 18% (26518/139692), 13.19 MiB | 26.37 MiB/s 2022-02-24T03:09:53.3247701Z Receiving objects: 19% (26542/139692), 26.95 MiB | 26.94 MiB/s 2022-02-24T03:09:53.4547276Z Receiving objects: 20% (27939/139692), 26.95 MiB | 26.94 MiB/s 2022-02-24T03:09:53.6057210Z Receiving objects: 21% (29336/139692), 26.95 MiB | 26.94 MiB/s 2022-02-24T03:09:53.6798164Z Receiving objects: 22% (30733/139692), 26.95 MiB | 26.94 MiB/s 2022-02-24T03:09:53.6931723Z Receiving objects: 23% (32130/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.7079169Z Receiving objects: 24% (33527/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.7234265Z Receiving objects: 25% (34923/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.7429247Z Receiving objects: 26% (36320/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.7633640Z Receiving objects: 27% (37717/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.7802875Z Receiving objects: 28% (39114/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.8498207Z Receiving objects: 29% (40511/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.9035422Z Receiving objects: 30% (41908/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.9586228Z Receiving objects: 31% (43305/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.9721365Z Receiving objects: 32% (44702/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:53.9811230Z Receiving objects: 33% (46099/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:54.0097348Z Receiving objects: 34% (47496/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:54.0539912Z Receiving objects: 35% (48893/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:54.1153997Z Receiving objects: 36% (50290/139692), 43.97 MiB | 29.31 MiB/s 2022-02-24T03:09:54.1965688Z Receiving objects: 36% (51062/139692), 64.53 MiB | 32.26 MiB/s 2022-02-24T03:09:54.3693400Z Receiving objects: 37% (51687/139692), 64.53 MiB | 32.26 MiB/s 2022-02-24T03:09:54.4979301Z Receiving objects: 38% (53083/139692), 64.53 MiB | 32.26 MiB/s 2022-02-24T03:09:54.6564605Z Receiving objects: 39% (54480/139692), 64.53 MiB | 32.26 MiB/s 2022-02-24T03:09:54.7240423Z Receiving objects: 40% (55877/139692), 84.74 MiB | 33.89 MiB/s 2022-02-24T03:09:54.8491815Z Receiving objects: 41% (57274/139692), 84.74 MiB | 33.89 MiB/s 2022-02-24T03:09:55.0712673Z Receiving objects: 42% (58671/139692), 84.74 MiB | 33.89 MiB/s 2022-02-24T03:09:55.1154225Z Receiving objects: 43% (60068/139692), 84.74 MiB | 33.89 MiB/s 2022-02-24T03:09:55.1762481Z Receiving objects: 43% (60420/139692), 84.74 MiB | 33.89 MiB/s 2022-02-24T03:09:55.3397718Z Receiving objects: 44% (61465/139692), 104.38 MiB | 34.79 MiB/s 2022-02-24T03:09:55.5170409Z Receiving objects: 45% (62862/139692), 104.38 MiB | 34.79 MiB/s 2022-02-24T03:09:55.7425519Z Receiving objects: 46% (64259/139692), 104.38 MiB | 34.79 MiB/s 2022-02-24T03:09:55.9140317Z Receiving objects: 47% (65656/139692), 124.00 MiB | 35.44 MiB/s 2022-02-24T03:09:56.0939187Z Receiving objects: 48% (67053/139692), 124.00 MiB | 35.44 MiB/s 2022-02-24T03:09:56.1154485Z Receiving objects: 49% (68450/139692), 124.00 MiB | 35.44 MiB/s 2022-02-24T03:09:56.5250140Z Receiving objects: 49% (68526/139692), 145.80 MiB | 36.46 MiB/s 2022-02-24T03:09:57.0219111Z Receiving objects: 50% (69846/139692), 145.80 MiB | 36.46 MiB/s 2022-02-24T03:09:57.1155705Z Receiving objects: 51% (71243/139692), 167.70 MiB | 37.27 MiB/s 2022-02-24T03:09:57.3720096Z Receiving objects: 51% (71666/139692), 189.62 MiB | 39.22 MiB/s 2022-02-24T03:09:57.7831094Z Receiving objects: 52% (72640/139692), 189.62 MiB | 39.22 MiB/s 2022-02-24T03:09:58.1155843Z Receiving objects: 53% (74037/139692), 209.14 MiB | 40.50 MiB/s 2022-02-24T03:09:58.1620117Z Receiving objects: 53% (75085/139692), 229.62 MiB | 41.26 MiB/s 2022-02-24T03:09:58.4679384Z Receiving objects: 54% (75434/139692), 229.62 MiB | 41.26 MiB/s 2022-02-24T03:09:58.6819224Z Receiving objects: 55% (76831/139692), 229.62 MiB | 41.26 MiB/s 2022-02-24T03:09:59.0201981Z Receiving objects: 56% (78228/139692), 251.55 MiB | 41.57 MiB/s 2022-02-24T03:09:59.1109490Z Receiving objects: 57% (79625/139692), 251.55 MiB | 41.57 MiB/s 2022-02-24T03:09:59.1151215Z Receiving objects: 58% (81022/139692), 251.55 MiB | 41.57 MiB/s 2022-02-24T03:09:59.1232429Z Receiving objects: 58% (81439/139692), 251.55 MiB | 41.57 MiB/s 2022-02-24T03:09:59.1333386Z Receiving objects: 59% (82419/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.1427522Z Receiving objects: 60% (83816/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.1486243Z Receiving objects: 61% (85213/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.1530650Z Receiving objects: 62% (86610/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.1583395Z Receiving objects: 63% (88006/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.1613200Z Receiving objects: 64% (89403/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.1661344Z Receiving objects: 65% (90800/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.2245093Z Receiving objects: 66% (92197/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.3425460Z Receiving objects: 67% (93594/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.6598606Z Receiving objects: 68% (94991/139692), 272.52 MiB | 41.74 MiB/s 2022-02-24T03:09:59.6894621Z Receiving objects: 69% (96388/139692), 292.77 MiB | 41.87 MiB/s 2022-02-24T03:09:59.7913935Z Receiving objects: 70% (97785/139692), 292.77 MiB | 41.87 MiB/s 2022-02-24T03:09:59.8861444Z Receiving objects: 71% (99182/139692), 292.77 MiB | 41.87 MiB/s 2022-02-24T03:09:59.9237941Z Receiving objects: 72% (100579/139692), 292.77 MiB | 41.87 MiB/s 2022-02-24T03:10:00.1159132Z Receiving objects: 73% (101976/139692), 292.77 MiB | 41.87 MiB/s 2022-02-24T03:10:00.1584023Z Receiving objects: 73% (103012/139692), 311.03 MiB | 41.56 MiB/s 2022-02-24T03:10:00.2160613Z Receiving objects: 74% (103373/139692), 311.03 MiB | 41.56 MiB/s 2022-02-24T03:10:00.2594717Z Receiving objects: 75% (104769/139692), 311.03 MiB | 41.56 MiB/s 2022-02-24T03:10:00.2779640Z Receiving objects: 76% (106166/139692), 311.03 MiB | 41.56 MiB/s 2022-02-24T03:10:00.4033497Z Receiving objects: 77% (107563/139692), 311.03 MiB | 41.56 MiB/s 2022-02-24T03:10:00.4892628Z Receiving objects: 78% (108960/139692), 311.03 MiB | 41.56 MiB/s 2022-02-24T03:10:00.6219646Z Receiving objects: 79% (110357/139692), 311.03 MiB | 41.56 MiB/s 2022-02-24T03:10:00.8452546Z Receiving objects: 80% (111754/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.8551444Z Receiving objects: 81% (113151/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.8767704Z Receiving objects: 82% (114548/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.9036503Z Receiving objects: 83% (115945/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.9095573Z Receiving objects: 84% (117342/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.9180389Z Receiving objects: 85% (118739/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.9228180Z Receiving objects: 86% (120136/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.9547514Z Receiving objects: 87% (121533/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.9713782Z Receiving objects: 88% (122929/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:00.9738708Z Receiving objects: 89% (124326/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:01.0282220Z Receiving objects: 90% (125723/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:01.1158674Z Receiving objects: 91% (127120/139692), 330.57 MiB | 41.06 MiB/s 2022-02-24T03:10:01.1305046Z Receiving objects: 91% (128320/139692), 347.19 MiB | 39.89 MiB/s 2022-02-24T03:10:01.3000724Z Receiving objects: 92% (128517/139692), 347.19 MiB | 39.89 MiB/s 2022-02-24T03:10:01.3497280Z Receiving objects: 93% (129914/139692), 347.19 MiB | 39.89 MiB/s 2022-02-24T03:10:01.4828660Z Receiving objects: 94% (131311/139692), 347.19 MiB | 39.89 MiB/s 2022-02-24T03:10:01.5770388Z Receiving objects: 95% (132708/139692), 347.19 MiB | 39.89 MiB/s 2022-02-24T03:10:01.6244735Z Receiving objects: 96% (134105/139692), 347.19 MiB | 39.89 MiB/s 2022-02-24T03:10:01.6680645Z Receiving objects: 97% (135502/139692), 367.36 MiB | 39.50 MiB/s 2022-02-24T03:10:01.7044292Z Receiving objects: 98% (136899/139692), 367.36 MiB | 39.50 MiB/s 2022-02-24T03:10:02.2179195Z Receiving objects: 99% (138296/139692), 367.36 MiB | 39.50 MiB/s 2022-02-24T03:10:02.3820353Z Receiving objects: 99% (139472/139692), 375.18 MiB | 36.08 MiB/s 2022-02-24T03:10:02.3821276Z remote: Total 139692 (delta 415), reused 329 (delta 256), pack-reused 139113 2022-02-24T03:10:02.3821827Z Receiving objects: 100% (139692/139692), 375.18 MiB | 36.08 MiB/s 2022-02-24T03:10:02.3822338Z Receiving objects: 100% (139692/139692), 376.76 MiB | 36.70 MiB/s, done. 2022-02-24T03:10:02.4645262Z Resolving deltas: 0% (0/115196) 2022-02-24T03:10:02.5081849Z Resolving deltas: 1% (1152/115196) 2022-02-24T03:10:02.5453194Z Resolving deltas: 2% (2304/115196) 2022-02-24T03:10:02.5925338Z Resolving deltas: 3% (3456/115196) 2022-02-24T03:10:02.8308088Z Resolving deltas: 4% (4608/115196) 2022-02-24T03:10:03.0511825Z Resolving deltas: 5% (5760/115196) 2022-02-24T03:10:03.0948500Z Resolving deltas: 6% (6912/115196) 2022-02-24T03:10:03.1820701Z Resolving deltas: 7% (8064/115196) 2022-02-24T03:10:03.2367970Z Resolving deltas: 8% (9216/115196) 2022-02-24T03:10:03.2856310Z Resolving deltas: 9% (10368/115196) 2022-02-24T03:10:03.3866366Z Resolving deltas: 10% (11520/115196) 2022-02-24T03:10:03.3993194Z Resolving deltas: 11% (12672/115196) 2022-02-24T03:10:03.4246975Z Resolving deltas: 11% (12890/115196) 2022-02-24T03:10:03.4689933Z Resolving deltas: 12% (13824/115196) 2022-02-24T03:10:03.5341025Z Resolving deltas: 13% (14976/115196) 2022-02-24T03:10:03.6016320Z Resolving deltas: 14% (16128/115196) 2022-02-24T03:10:03.6753786Z Resolving deltas: 15% (17280/115196) 2022-02-24T03:10:03.7653273Z Resolving deltas: 16% (18432/115196) 2022-02-24T03:10:03.7941462Z Resolving deltas: 17% (19584/115196) 2022-02-24T03:10:03.8299026Z Resolving deltas: 18% (20736/115196) 2022-02-24T03:10:03.8924061Z Resolving deltas: 19% (21888/115196) 2022-02-24T03:10:04.2625971Z Resolving deltas: 20% (23040/115196) 2022-02-24T03:10:04.3501606Z Resolving deltas: 21% (24192/115196) 2022-02-24T03:10:04.3994483Z Resolving deltas: 22% (25344/115196) 2022-02-24T03:10:04.4543935Z Resolving deltas: 22% (25929/115196) 2022-02-24T03:10:04.4848417Z Resolving deltas: 23% (26496/115196) 2022-02-24T03:10:04.6535323Z Resolving deltas: 24% (27648/115196) 2022-02-24T03:10:05.2623132Z Resolving deltas: 25% (28799/115196) 2022-02-24T03:10:05.3994462Z Resolving deltas: 26% (29951/115196) 2022-02-24T03:10:05.6661964Z Resolving deltas: 26% (30239/115196) 2022-02-24T03:10:05.6820296Z Resolving deltas: 27% (31103/115196) 2022-02-24T03:10:05.7232528Z Resolving deltas: 28% (32255/115196) 2022-02-24T03:10:06.3993406Z Resolving deltas: 29% (33407/115196) 2022-02-24T03:10:07.4027963Z Resolving deltas: 29% (33924/115196) 2022-02-24T03:10:07.8886006Z Resolving deltas: 29% (34357/115196) 2022-02-24T03:10:08.4017752Z Resolving deltas: 30% (34559/115196) 2022-02-24T03:10:09.2789457Z Resolving deltas: 30% (34752/115196) 2022-02-24T03:10:09.3629051Z Resolving deltas: 31% (35711/115196) 2022-02-24T03:10:09.3992660Z Resolving deltas: 32% (36863/115196) 2022-02-24T03:10:09.7367110Z Resolving deltas: 32% (37135/115196) 2022-02-24T03:10:10.4048625Z Resolving deltas: 33% (38015/115196) 2022-02-24T03:10:11.4009419Z Resolving deltas: 33% (38606/115196) 2022-02-24T03:10:11.4238950Z Resolving deltas: 33% (39143/115196) 2022-02-24T03:10:12.1934350Z Resolving deltas: 34% (39167/115196) 2022-02-24T03:10:12.2698636Z Resolving deltas: 35% (40319/115196) 2022-02-24T03:10:12.3346503Z Resolving deltas: 36% (41471/115196) 2022-02-24T03:10:12.3993900Z Resolving deltas: 37% (42623/115196) 2022-02-24T03:10:12.4011574Z Resolving deltas: 37% (43718/115196) 2022-02-24T03:10:12.4513037Z Resolving deltas: 38% (43775/115196) 2022-02-24T03:10:13.3999375Z Resolving deltas: 39% (44927/115196) 2022-02-24T03:10:14.1704158Z Resolving deltas: 39% (45703/115196) 2022-02-24T03:10:14.4126173Z Resolving deltas: 40% (46079/115196) 2022-02-24T03:10:15.4174524Z Resolving deltas: 40% (46102/115196) 2022-02-24T03:10:16.4061072Z Resolving deltas: 40% (46199/115196) 2022-02-24T03:10:17.0559816Z Resolving deltas: 40% (46591/115196) 2022-02-24T03:10:17.3996667Z Resolving deltas: 41% (47231/115196) 2022-02-24T03:10:17.4808546Z Resolving deltas: 41% (47924/115196) 2022-02-24T03:10:17.5429135Z Resolving deltas: 42% (48383/115196) 2022-02-24T03:10:17.8582246Z Resolving deltas: 43% (49535/115196) 2022-02-24T03:10:18.3996026Z Resolving deltas: 44% (50687/115196) 2022-02-24T03:10:18.5377042Z Resolving deltas: 44% (51639/115196) 2022-02-24T03:10:18.7403169Z Resolving deltas: 45% (51839/115196) 2022-02-24T03:10:19.4009676Z Resolving deltas: 46% (52991/115196) 2022-02-24T03:10:20.4049013Z Resolving deltas: 46% (53438/115196) 2022-02-24T03:10:20.9616279Z Resolving deltas: 46% (53848/115196) 2022-02-24T03:10:21.2228593Z Resolving deltas: 47% (54143/115196) 2022-02-24T03:10:21.3993815Z Resolving deltas: 48% (55295/115196) 2022-02-24T03:10:21.6377854Z Resolving deltas: 48% (55393/115196) 2022-02-24T03:10:21.8355455Z Resolving deltas: 49% (56447/115196) 2022-02-24T03:10:21.8458570Z Resolving deltas: 50% (57598/115196) 2022-02-24T03:10:21.8766708Z Resolving deltas: 51% (58750/115196) 2022-02-24T03:10:21.8912769Z Resolving deltas: 52% (59902/115196) 2022-02-24T03:10:21.9034344Z Resolving deltas: 53% (61054/115196) 2022-02-24T03:10:21.9796455Z Resolving deltas: 54% (62206/115196) 2022-02-24T03:10:22.0067430Z Resolving deltas: 55% (63358/115196) 2022-02-24T03:10:22.0225668Z Resolving deltas: 56% (64510/115196) 2022-02-24T03:10:22.3894136Z Resolving deltas: 57% (65662/115196) 2022-02-24T03:10:22.4021173Z Resolving deltas: 58% (66814/115196) 2022-02-24T03:10:22.4711102Z Resolving deltas: 58% (67020/115196) 2022-02-24T03:10:22.4787579Z Resolving deltas: 59% (67966/115196) 2022-02-24T03:10:22.4825131Z Resolving deltas: 60% (69118/115196) 2022-02-24T03:10:22.5301665Z Resolving deltas: 61% (70270/115196) 2022-02-24T03:10:22.5549570Z Resolving deltas: 62% (71422/115196) 2022-02-24T03:10:22.5678369Z Resolving deltas: 63% (72574/115196) 2022-02-24T03:10:22.5771063Z Resolving deltas: 64% (73726/115196) 2022-02-24T03:10:22.6048552Z Resolving deltas: 65% (74878/115196) 2022-02-24T03:10:22.6329764Z Resolving deltas: 66% (76030/115196) 2022-02-24T03:10:22.6423517Z Resolving deltas: 67% (77182/115196) 2022-02-24T03:10:22.6554693Z Resolving deltas: 68% (78334/115196) 2022-02-24T03:10:22.6772855Z Resolving deltas: 69% (79486/115196) 2022-02-24T03:10:22.7975849Z Resolving deltas: 70% (80638/115196) 2022-02-24T03:10:22.8475507Z Resolving deltas: 71% (81790/115196) 2022-02-24T03:10:22.9130562Z Resolving deltas: 72% (82942/115196) 2022-02-24T03:10:23.4018961Z Resolving deltas: 73% (84094/115196) 2022-02-24T03:10:23.5779006Z Resolving deltas: 73% (85077/115196) 2022-02-24T03:10:24.2460460Z Resolving deltas: 74% (85246/115196) 2022-02-24T03:10:24.4092586Z Resolving deltas: 75% (86397/115196) 2022-02-24T03:10:25.4005720Z Resolving deltas: 75% (86491/115196) 2022-02-24T03:10:26.4019135Z Resolving deltas: 75% (86710/115196) 2022-02-24T03:10:27.4022798Z Resolving deltas: 75% (87058/115196) 2022-02-24T03:10:27.5115584Z Resolving deltas: 75% (87412/115196) 2022-02-24T03:10:28.4103551Z Resolving deltas: 76% (87549/115196) 2022-02-24T03:10:29.3997186Z Resolving deltas: 76% (88096/115196) 2022-02-24T03:10:30.2103810Z Resolving deltas: 76% (88190/115196) 2022-02-24T03:10:30.2383755Z Resolving deltas: 77% (88701/115196) 2022-02-24T03:10:30.4065619Z Resolving deltas: 78% (89853/115196) 2022-02-24T03:10:31.1864965Z Resolving deltas: 78% (90418/115196) 2022-02-24T03:10:31.4011864Z Resolving deltas: 79% (91005/115196) 2022-02-24T03:10:32.4110367Z Resolving deltas: 79% (91101/115196) 2022-02-24T03:10:33.4050860Z Resolving deltas: 79% (91351/115196) 2022-02-24T03:10:33.4479591Z Resolving deltas: 79% (92139/115196) 2022-02-24T03:10:34.3993332Z Resolving deltas: 80% (92157/115196) 2022-02-24T03:10:34.6808243Z Resolving deltas: 80% (92400/115196) 2022-02-24T03:10:34.7611583Z Resolving deltas: 81% (93309/115196) 2022-02-24T03:10:34.7669012Z Resolving deltas: 82% (94461/115196) 2022-02-24T03:10:34.7794987Z Resolving deltas: 83% (95613/115196) 2022-02-24T03:10:34.9140348Z Resolving deltas: 84% (96765/115196) 2022-02-24T03:10:35.4016681Z Resolving deltas: 85% (97917/115196) 2022-02-24T03:10:35.8897371Z Resolving deltas: 85% (98851/115196) 2022-02-24T03:10:36.3994170Z Resolving deltas: 86% (99069/115196) 2022-02-24T03:10:36.4784379Z Resolving deltas: 86% (99266/115196) 2022-02-24T03:10:36.4928855Z Resolving deltas: 87% (100221/115196) 2022-02-24T03:10:36.5051132Z Resolving deltas: 88% (101373/115196) 2022-02-24T03:10:36.7887360Z Resolving deltas: 89% (102525/115196) 2022-02-24T03:10:36.7984059Z Resolving deltas: 90% (103677/115196) 2022-02-24T03:10:36.8073730Z Resolving deltas: 91% (104829/115196) 2022-02-24T03:10:36.8202073Z Resolving deltas: 92% (105981/115196) 2022-02-24T03:10:36.9083336Z Resolving deltas: 93% (107133/115196) 2022-02-24T03:10:36.9256792Z Resolving deltas: 94% (108285/115196) 2022-02-24T03:10:37.1983703Z Resolving deltas: 95% (109437/115196) 2022-02-24T03:10:37.2098567Z Resolving deltas: 96% (110589/115196) 2022-02-24T03:10:37.2194201Z Resolving deltas: 97% (111741/115196) 2022-02-24T03:10:37.2263570Z Resolving deltas: 98% (112893/115196) 2022-02-24T03:10:37.4007412Z Resolving deltas: 99% (114045/115196) 2022-02-24T03:10:37.4645546Z Resolving deltas: 99% (115168/115196) 2022-02-24T03:10:37.4646281Z Resolving deltas: 100% (115196/115196) 2022-02-24T03:10:37.4646894Z Resolving deltas: 100% (115196/115196), done. 2022-02-24T03:10:37.9822195Z From https://github.com/iptv-org/iptv 2022-02-24T03:10:37.9823187Z * [new branch] LaneSh4d0w-patch-1 -> origin/LaneSh4d0w-patch-1 2022-02-24T03:10:37.9923918Z * [new branch] gh-pages -> origin/gh-pages 2022-02-24T03:10:37.9924923Z * [new branch] master -> origin/master 2022-02-24T03:10:37.9925722Z * [new branch] opencaster-patch -> origin/opencaster-patch 2022-02-24T03:10:37.9928805Z [command]/usr/bin/git branch --list --remote origin/master 2022-02-24T03:10:37.9929342Z origin/master 2022-02-24T03:10:37.9929952Z [command]/usr/bin/git rev-parse refs/remotes/origin/master 2022-02-24T03:10:37.9932864Z b6de29f8147fc292331b3eef6404ed09bedaadef 2022-02-24T03:10:37.9933766Z ##[endgroup] 2022-02-24T03:10:37.9934516Z ##[group]Determining the checkout info 2022-02-24T03:10:37.9943528Z ##[endgroup] 2022-02-24T03:10:37.9944143Z ##[group]Checking out the ref 2022-02-24T03:10:37.9944783Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master 2022-02-24T03:10:38.0620870Z Reset branch 'master' 2022-02-24T03:10:38.0621406Z branch 'master' set up to track 'origin/master'. 2022-02-24T03:10:38.0637328Z ##[endgroup] 2022-02-24T03:10:38.0678949Z [command]/usr/bin/git log -1 --format='%H' 2022-02-24T03:10:38.0705897Z 'b6de29f8147fc292331b3eef6404ed09bedaadef' 2022-02-24T03:10:38.0870087Z ##[group]Run echo "::set-output name=branch_name::$(date +'bot/auto-update-%s')" 2022-02-24T03:10:38.0870770Z echo "::set-output name=branch_name::$(date +'bot/auto-update-%s')" 2022-02-24T03:10:38.0921421Z shell: /usr/bin/bash -e {0} 2022-02-24T03:10:38.0921807Z ##[endgroup] 2022-02-24T03:10:38.1130293Z ##[group]Run git config user.name 'iptv-bot[bot]' 2022-02-24T03:10:38.1130778Z git config user.name 'iptv-bot[bot]' 2022-02-24T03:10:38.1177756Z shell: /usr/bin/bash -e {0} 2022-02-24T03:10:38.1178132Z ##[endgroup] 2022-02-24T03:10:38.1279872Z ##[group]Run git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com' 2022-02-24T03:10:38.1280509Z git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com' 2022-02-24T03:10:38.1326475Z shell: /usr/bin/bash -e {0} 2022-02-24T03:10:38.1326855Z ##[endgroup] 2022-02-24T03:10:38.1482637Z ##[group]Run git checkout -b bot/auto-update-1645672238 2022-02-24T03:10:38.1483166Z git checkout -b bot/auto-update-1645672238 2022-02-24T03:10:38.1528867Z shell: /usr/bin/bash -e {0} 2022-02-24T03:10:38.1529246Z ##[endgroup] 2022-02-24T03:10:38.1616355Z Switched to a new branch 'bot/auto-update-1645672238' 2022-02-24T03:10:38.1718772Z ##[group]Run tibdex/github-app-token@v1 2022-02-24T03:10:38.1719170Z with: 2022-02-24T03:10:38.1719632Z app_id: *** 2022-02-24T03:10:38.1724235Z private_key: *** 2022-02-24T03:10:38.1724763Z ##[endgroup] 2022-02-24T03:10:38.5253067Z 2022-02-24T03:10:38.5254550Z Token generated successfully! 2022-02-24T03:10:38.5338071Z ##[group]Run actions/setup-node@v2 2022-02-24T03:10:38.5338454Z with: 2022-02-24T03:10:38.5338775Z node-version: 14 2022-02-24T03:10:38.5339123Z always-auth: false 2022-02-24T03:10:38.5339478Z check-latest: false 2022-02-24T03:10:38.5339994Z token: *** 2022-02-24T03:10:38.5340327Z ##[endgroup] 2022-02-24T03:10:38.6923176Z Found in cache @ /opt/hostedtoolcache/node/14.19.0/x64 2022-02-24T03:10:38.7042622Z ##[group]Run actions/download-artifact@v2 2022-02-24T03:10:38.7043032Z with: 2022-02-24T03:10:38.7043454Z name: data 2022-02-24T03:10:38.7043787Z path: scripts/data 2022-02-24T03:10:38.7044125Z ##[endgroup] 2022-02-24T03:10:38.7535772Z Starting download for data 2022-02-24T03:10:38.8537108Z Directory structure has been setup for the artifact 2022-02-24T03:10:38.8542710Z Total number of files that will be downloaded: 8 2022-02-24T03:10:39.1879837Z Artifact data was downloaded to /home/runner/work/iptv/iptv/scripts/data 2022-02-24T03:10:39.1884319Z Artifact download has finished successfully 2022-02-24T03:10:39.1973980Z ##[group]Run actions/download-artifact@v2 2022-02-24T03:10:39.1974389Z with: 2022-02-24T03:10:39.1974722Z name: database 2022-02-24T03:10:39.1975074Z path: scripts/database 2022-02-24T03:10:39.1975429Z ##[endgroup] 2022-02-24T03:10:39.2452810Z Starting download for database 2022-02-24T03:10:39.3190189Z Directory structure has been setup for the artifact 2022-02-24T03:10:39.3191699Z Total number of files that will be downloaded: 1 2022-02-24T03:10:39.4452095Z Artifact database was downloaded to /home/runner/work/iptv/iptv/scripts/database 2022-02-24T03:10:39.4454453Z Artifact download has finished successfully 2022-02-24T03:10:39.4516243Z ##[group]Run actions/download-artifact@v2 2022-02-24T03:10:39.4516644Z with: 2022-02-24T03:10:39.4516961Z name: logs 2022-02-24T03:10:39.4517295Z path: scripts/logs 2022-02-24T03:10:39.4517643Z ##[endgroup] 2022-02-24T03:10:39.5009681Z Starting download for logs 2022-02-24T03:10:39.6118909Z Directory structure has been setup for the artifact 2022-02-24T03:10:39.6120834Z Total number of files that will be downloaded: 256 2022-02-24T03:10:40.6128301Z Total file count: 256 ---- Processed file #29 (11.3%) 2022-02-24T03:10:41.6125334Z Total file count: 256 ---- Processed file #64 (25.0%) 2022-02-24T03:10:42.6122690Z Total file count: 256 ---- Processed file #98 (38.2%) 2022-02-24T03:10:43.6130671Z Total file count: 256 ---- Processed file #126 (49.2%) 2022-02-24T03:10:44.6129192Z Total file count: 256 ---- Processed file #158 (61.7%) 2022-02-24T03:10:45.6137510Z Total file count: 256 ---- Processed file #188 (73.4%) 2022-02-24T03:10:46.6132149Z Total file count: 256 ---- Processed file #216 (84.3%) 2022-02-24T03:10:47.6135463Z Total file count: 256 ---- Processed file #254 (99.2%) 2022-02-24T03:10:47.6453735Z Artifact logs was downloaded to /home/runner/work/iptv/iptv/scripts/logs 2022-02-24T03:10:47.6455759Z Artifact download has finished successfully 2022-02-24T03:10:47.6515220Z ##[group]Run npm install 2022-02-24T03:10:47.6515608Z npm install 2022-02-24T03:10:47.6565441Z shell: /usr/bin/bash -e {0} 2022-02-24T03:10:47.6565829Z ##[endgroup] 2022-02-24T03:10:48.2246402Z npm WARN read-shrinkwrap This version of npm is compatible with lockfileVersion@1, but package-lock.json was generated for lockfileVersion@2. I'll try to do my best with it! 2022-02-24T03:10:53.8087341Z npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@2.3.2 (node_modules/fsevents): 2022-02-24T03:10:53.8090209Z npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@2.3.2: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) 2022-02-24T03:10:53.8095396Z 2022-02-24T03:10:53.8115749Z added 389 packages from 304 contributors and audited 392 packages in 5.627s 2022-02-24T03:10:53.9428059Z 2022-02-24T03:10:53.9428896Z 30 packages are looking for funding 2022-02-24T03:10:53.9429513Z run `npm fund` for details 2022-02-24T03:10:53.9429954Z 2022-02-24T03:10:53.9433971Z found 0 vulnerabilities 2022-02-24T03:10:53.9434323Z 2022-02-24T03:10:53.9954415Z ##[group]Run npm run db:update 2022-02-24T03:10:53.9954874Z npm run db:update 2022-02-24T03:10:54.0003129Z shell: /usr/bin/bash -e {0} 2022-02-24T03:10:54.0003523Z ##[endgroup] 2022-02-24T03:10:54.2006424Z 2022-02-24T03:10:54.2007264Z > iptv@ db:update /home/runner/work/iptv/iptv 2022-02-24T03:10:54.2010761Z > node scripts/commands/database/update.js 2022-02-24T03:10:54.2011253Z 2022-02-24T03:10:54.4038246Z loading streams... 2022-02-24T03:10:55.0986813Z found 11663 streams 2022-02-24T03:10:55.1001735Z loading check results... 2022-02-24T03:10:55.6100692Z found 11663 results 2022-02-24T03:10:55.6104707Z loading origins... 2022-02-24T03:10:56.4301085Z found 6781 origins 2022-02-24T03:10:56.4302563Z updating streams... 2022-02-24T03:10:59.1855526Z updated 11660 streams 2022-02-24T03:10:59.1856325Z removed 3 duplicates 2022-02-24T03:10:59.1857128Z done 2022-02-24T03:10:59.3445638Z ##[group]Run actions/upload-artifact@v2 2022-02-24T03:10:59.3446031Z with: 2022-02-24T03:10:59.3446360Z name: database 2022-02-24T03:10:59.3446705Z path: scripts/database 2022-02-24T03:10:59.3447071Z if-no-files-found: warn 2022-02-24T03:10:59.3447434Z ##[endgroup] 2022-02-24T03:10:59.4015377Z With the provided path, there will be 1 file uploaded 2022-02-24T03:10:59.4017708Z Starting artifact upload 2022-02-24T03:10:59.4019362Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging 2022-02-24T03:10:59.4020463Z Artifact name is valid! 2022-02-24T03:10:59.4588875Z Container for artifact "database" successfully created. Starting upload of file(s) 2022-02-24T03:10:59.7246908Z Total size of all the files uploaded is 856409 bytes 2022-02-24T03:10:59.7249195Z File upload process has finished. Finalizing the artifact upload 2022-02-24T03:10:59.7575485Z Artifact has been finalized. All files have been successfully uploaded! 2022-02-24T03:10:59.7594282Z 2022-02-24T03:10:59.7594843Z The raw size of all the files that were specified for upload is 3978167 bytes 2022-02-24T03:10:59.7596348Z The size of all the files that were uploaded is 856409 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage 2022-02-24T03:10:59.7596960Z 2022-02-24T03:10:59.7598021Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 2022-02-24T03:10:59.7600553Z 2022-02-24T03:10:59.7600972Z Artifact database has been successfully uploaded! 2022-02-24T03:10:59.7683663Z ##[group]Run npm run playlist:update 2022-02-24T03:10:59.7684110Z npm run playlist:update 2022-02-24T03:10:59.7731399Z shell: /usr/bin/bash -e {0} 2022-02-24T03:10:59.7731787Z ##[endgroup] 2022-02-24T03:10:59.9696864Z 2022-02-24T03:10:59.9697756Z > iptv@ playlist:update /home/runner/work/iptv/iptv 2022-02-24T03:10:59.9698917Z > node scripts/commands/playlist/update.js 2022-02-24T03:10:59.9699322Z 2022-02-24T03:11:01.4860792Z ##[group]Run npm run playlist:generate 2022-02-24T03:11:01.4861254Z npm run playlist:generate 2022-02-24T03:11:01.4913827Z shell: /usr/bin/bash -e {0} 2022-02-24T03:11:01.4914220Z ##[endgroup] 2022-02-24T03:11:01.6864995Z 2022-02-24T03:11:01.6865994Z > iptv@ playlist:generate /home/runner/work/iptv/iptv 2022-02-24T03:11:01.6866762Z > node scripts/commands/playlist/generate.js 2022-02-24T03:11:01.6867224Z 2022-02-24T03:11:03.2873915Z generating categories/... 2022-02-24T03:11:03.5904370Z generating countries/... 2022-02-24T03:11:04.5279782Z generating languages/... 2022-02-24T03:11:05.5698651Z generating regions/... 2022-02-24T03:11:05.8591188Z generating index.category.m3u... 2022-02-24T03:11:06.0213625Z generating index.country.m3u... 2022-02-24T03:11:06.3323099Z generating index.language.m3u... 2022-02-24T03:11:06.4697316Z generating index.m3u... 2022-02-24T03:11:06.5464231Z generating index.nsfw.m3u... 2022-02-24T03:11:06.6093026Z generating index.region.m3u... 2022-02-24T03:11:07.4192254Z ##[group]Run npm run db:export 2022-02-24T03:11:07.4192656Z npm run db:export 2022-02-24T03:11:07.4239984Z shell: /usr/bin/bash -e {0} 2022-02-24T03:11:07.4240380Z ##[endgroup] 2022-02-24T03:11:07.6188834Z 2022-02-24T03:11:07.6189727Z > iptv@ db:export /home/runner/work/iptv/iptv 2022-02-24T03:11:07.6190388Z > node scripts/commands/database/export.js 2022-02-24T03:11:07.6190724Z 2022-02-24T03:11:08.5857243Z ##[group]Run npm run readme:update 2022-02-24T03:11:08.5857676Z npm run readme:update 2022-02-24T03:11:08.5904933Z shell: /usr/bin/bash -e {0} 2022-02-24T03:11:08.5905329Z ##[endgroup] 2022-02-24T03:11:08.7884062Z 2022-02-24T03:11:08.7884992Z > iptv@ readme:update /home/runner/work/iptv/iptv 2022-02-24T03:11:08.7930391Z > node scripts/commands/readme/update.js 2022-02-24T03:11:08.7930671Z 2022-02-24T03:11:08.9989383Z creating category table... 2022-02-24T03:11:09.0023945Z creating country table... 2022-02-24T03:11:09.0083930Z creating language table... 2022-02-24T03:11:09.0221627Z creating region table... 2022-02-24T03:11:09.0231320Z updating readme.md... 2022-02-24T03:11:09.0440780Z ##[group]Run actions/upload-artifact@v2 2022-02-24T03:11:09.0441188Z with: 2022-02-24T03:11:09.0441507Z name: logs 2022-02-24T03:11:09.0441849Z path: scripts/logs 2022-02-24T03:11:09.0442222Z if-no-files-found: warn 2022-02-24T03:11:09.0442586Z ##[endgroup] 2022-02-24T03:11:09.1600107Z With the provided path, there will be 266 files uploaded 2022-02-24T03:11:09.1605411Z Starting artifact upload 2022-02-24T03:11:09.1607030Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging 2022-02-24T03:11:09.1645621Z Artifact name is valid! 2022-02-24T03:11:09.2666934Z Container for artifact "logs" successfully created. Starting upload of file(s) 2022-02-24T03:11:19.2718477Z Total file count: 266 ---- Processed file #232 (87.2%) 2022-02-24T03:11:20.6079119Z Total size of all the files uploaded is 3228935 bytes 2022-02-24T03:11:20.6079958Z File upload process has finished. Finalizing the artifact upload 2022-02-24T03:11:20.6404604Z Artifact has been finalized. All files have been successfully uploaded! 2022-02-24T03:11:20.6404977Z 2022-02-24T03:11:20.6405342Z The raw size of all the files that were specified for upload is 58890667 bytes 2022-02-24T03:11:20.6406266Z The size of all the files that were uploaded is 3228935 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage 2022-02-24T03:11:20.6406741Z 2022-02-24T03:11:20.6407778Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 2022-02-24T03:11:20.6408307Z 2022-02-24T03:11:20.6411218Z Artifact logs has been successfully uploaded! 2022-02-24T03:11:20.6573221Z ##[group]Run git add streams/* 2022-02-24T03:11:20.6573656Z git add streams/* 2022-02-24T03:11:20.6574063Z git commit -m "[Bot] Update /streams" 2022-02-24T03:11:20.6574477Z git add README.md 2022-02-24T03:11:20.6574879Z git commit -m "[Bot] Update README.md" 2022-02-24T03:11:20.6575276Z git status 2022-02-24T03:11:20.6575692Z git push -u origin bot/auto-update-1645672238 2022-02-24T03:11:20.6623150Z shell: /usr/bin/bash -e {0} 2022-02-24T03:11:20.6623538Z ##[endgroup] 2022-02-24T03:11:20.7949231Z [bot/auto-update-1645672238 81d8259ed] [Bot] Update /streams 2022-02-24T03:11:20.7950161Z 71 files changed, 680 insertions(+), 686 deletions(-) 2022-02-24T03:11:20.8055576Z [bot/auto-update-1645672238 bd7efff4b] [Bot] Update README.md 2022-02-24T03:11:20.8056457Z 1 file changed, 99 insertions(+), 98 deletions(-) 2022-02-24T03:11:20.8090025Z On branch bot/auto-update-1645672238 2022-02-24T03:11:20.8090768Z Changes not staged for commit: 2022-02-24T03:11:20.8091473Z (use "git add ..." to update what will be committed) 2022-02-24T03:11:20.8092163Z (use "git restore ..." to discard changes in working directory) 2022-02-24T03:11:20.8106463Z modified: package-lock.json 2022-02-24T03:11:20.8107261Z 2022-02-24T03:11:20.8107628Z Untracked files: 2022-02-24T03:11:20.8108176Z (use "git add ..." to include in what will be committed) 2022-02-24T03:11:20.8108798Z .api/ 2022-02-24T03:11:20.8109345Z .gh-pages/ 2022-02-24T03:11:20.8109758Z 2022-02-24T03:11:20.8110172Z no changes added to commit (use "git add" and/or "git commit -a") 2022-02-24T03:11:23.9128253Z remote: 2022-02-24T03:11:23.9129637Z remote: Create a pull request for 'bot/auto-update-1645672238' on GitHub by visiting: 2022-02-24T03:11:23.9130799Z remote: https://github.com/iptv-org/iptv/pull/new/bot/auto-update-1645672238 2022-02-24T03:11:23.9132929Z remote: 2022-02-24T03:11:23.9133565Z To https://github.com/iptv-org/iptv 2022-02-24T03:11:23.9134453Z * [new branch] bot/auto-update-1645672238 -> bot/auto-update-1645672238 2022-02-24T03:11:23.9177287Z branch 'bot/auto-update-1645672238' set up to track 'origin/bot/auto-update-1645672238'. 2022-02-24T03:11:23.9235243Z ##[group]Run repo-sync/pull-request@v2 2022-02-24T03:11:23.9235644Z with: 2022-02-24T03:11:23.9236418Z github_token: *** 2022-02-24T03:11:23.9236822Z source_branch: bot/auto-update-1645672238 2022-02-24T03:11:23.9237237Z destination_branch: master 2022-02-24T03:11:23.9237630Z pr_title: [Bot] Daily update 2022-02-24T03:11:23.9238244Z pr_body: This pull request is created by [auto-update][1] workflow. [1]: https://github.com/iptv-org/iptv/actions/runs/1890367156 2022-02-24T03:11:23.9238820Z ##[endgroup] 2022-02-24T03:11:23.9475424Z ##[command]/usr/bin/docker run --name db2d7d0bbc3d2b99d42c0b973577e40b131ef_91950c --label 7db2d7 --workdir /github/workspace --rm -e INPUT_GITHUB_TOKEN -e INPUT_SOURCE_BRANCH -e INPUT_DESTINATION_BRANCH -e INPUT_PR_TITLE -e INPUT_PR_BODY -e INPUT_PR_TEMPLATE -e INPUT_PR_REVIEWER -e INPUT_PR_ASSIGNEE -e INPUT_PR_LABEL -e INPUT_PR_MILESTONE -e INPUT_PR_DRAFT -e INPUT_PR_ALLOW_EMPTY -e GITHUB_TOKEN -e HOME -e GITHUB_JOB -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_REPOSITORY_OWNER -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_RETENTION_DAYS -e GITHUB_RUN_ATTEMPT -e GITHUB_ACTOR -e GITHUB_WORKFLOW -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GITHUB_EVENT_NAME -e GITHUB_SERVER_URL -e GITHUB_API_URL -e GITHUB_GRAPHQL_URL -e GITHUB_REF_NAME -e GITHUB_REF_PROTECTED -e GITHUB_REF_TYPE -e GITHUB_WORKSPACE -e GITHUB_ACTION -e GITHUB_EVENT_PATH -e GITHUB_ACTION_REPOSITORY -e GITHUB_ACTION_REF -e GITHUB_PATH -e GITHUB_ENV -e RUNNER_OS -e RUNNER_ARCH -e RUNNER_NAME -e RUNNER_TOOL_CACHE -e RUNNER_TEMP -e RUNNER_WORKSPACE -e ACTIONS_RUNTIME_URL -e ACTIONS_RUNTIME_TOKEN -e ACTIONS_CACHE_URL -e GITHUB_ACTIONS=true -e CI=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/_temp/_runner_file_commands":"/github/file_commands" -v "/home/runner/work/iptv/iptv":"/github/workspace" 7db2d7:d0bbc3d2b99d42c0b973577e40b131ef 2022-02-24T03:11:24.7587456Z From https://github.com/iptv-org/iptv 2022-02-24T03:11:24.7588425Z * [new branch] LaneSh4d0w-patch-1 -> LaneSh4d0w-patch-1 2022-02-24T03:11:24.7592285Z * [new branch] gh-pages -> gh-pages 2022-02-24T03:11:24.7593070Z * [new branch] opencaster-patch -> opencaster-patch 2022-02-24T03:11:24.7655950Z LaneSh4d0w-patch-1 faa578fb6 Merge branch 'master' into LaneSh4d0w-patch-1 2022-02-24T03:11:24.7660465Z * bot/auto-update-1645672238 bd7efff4b [origin/bot/auto-update-1645672238] [Bot] Update README.md 2022-02-24T03:11:24.7661522Z gh-pages 0a91537b3 [Bot] Deploy to GitHub Pages 2022-02-24T03:11:24.7662453Z master b6de29f81 [origin/master] Merge pull request #6497 from fershady/patch-2 2022-02-24T03:11:24.7663331Z opencaster-patch 7041649e7 Update pe.m3u 2022-02-24T03:11:24.7664422Z remotes/origin/LaneSh4d0w-patch-1 faa578fb6 Merge branch 'master' into LaneSh4d0w-patch-1 2022-02-24T03:11:24.7665378Z remotes/origin/bot/auto-update-1645672238 bd7efff4b [Bot] Update README.md 2022-02-24T03:11:24.7666295Z remotes/origin/gh-pages 0a91537b3 [Bot] Deploy to GitHub Pages 2022-02-24T03:11:24.7667336Z remotes/origin/master b6de29f81 Merge pull request #6497 from fershady/patch-2 2022-02-24T03:11:24.7710202Z remotes/origin/opencaster-patch 7041649e7 Update pe.m3u 2022-02-24T03:11:24.7745893Z hub pull-request -b master -h bot/auto-update-1645672238 --no-edit -m "[Bot] Daily update" -m "This pull request is created by [auto-update][1] workflow. 2022-02-24T03:11:24.7746397Z 2022-02-24T03:11:24.7746841Z [1]: https://github.com/iptv-org/iptv/actions/runs/1890367156 2022-02-24T03:11:24.7747304Z " || true 2022-02-24T03:11:25.9766334Z https://github.com/iptv-org/iptv/pull/6515 2022-02-24T03:11:26.0896884Z ##[group]Run juliangruber/merge-pull-request-action@v1 2022-02-24T03:11:26.0897322Z with: 2022-02-24T03:11:26.0897919Z github-token: *** 2022-02-24T03:11:26.0898264Z number: 6515 2022-02-24T03:11:26.0899210Z method: squash 2022-02-24T03:11:26.0899558Z ##[endgroup] 2022-02-24T03:11:27.6028793Z ##[group]Run JamesIves/github-pages-deploy-action@4.1.1 2022-02-24T03:11:27.6029254Z with: 2022-02-24T03:11:27.6029583Z branch: gh-pages 2022-02-24T03:11:27.6029931Z folder: .gh-pages 2022-02-24T03:11:27.6030540Z token: *** 2022-02-24T03:11:27.6030905Z git-config-name: iptv-bot[bot] 2022-02-24T03:11:27.6031392Z git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com 2022-02-24T03:11:27.6031918Z commit-message: [Bot] Deploy to GitHub Pages 2022-02-24T03:11:27.6032317Z clean: false 2022-02-24T03:11:27.6032642Z ##[endgroup] 2022-02-24T03:11:27.6846434Z 2022-02-24T03:11:27.6847703Z GitHub Pages Deploy Action 🚀 2022-02-24T03:11:27.6848135Z 2022-02-24T03:11:27.6848829Z 🚀 Getting Started Guide: https://github.com/marketplace/actions/deploy-to-github-pages 2022-02-24T03:11:27.6850020Z ❓ Discussions / Q&A: https://github.com/JamesIves/github-pages-deploy-action/discussions 2022-02-24T03:11:27.6851086Z 🔧 Report a Bug: https://github.com/JamesIves/github-pages-deploy-action/issues 2022-02-24T03:11:27.6851651Z 2022-02-24T03:11:27.6853429Z 📣 Maintained by James Ives: https://jamesiv.es 2022-02-24T03:11:27.6854174Z 💖 Support: https://github.com/sponsors/JamesIves 2022-02-24T03:11:27.6855362Z Checking configuration and starting deployment… 🚦 2022-02-24T03:11:27.6856210Z Deploying using Deploy Token… 🔑 2022-02-24T03:11:27.6857459Z Configuring git… 2022-02-24T03:11:27.6896099Z [command]/usr/bin/git config user.name iptv-bot[bot] 2022-02-24T03:11:27.6965505Z [command]/usr/bin/git config user.email 84861620+iptv-bot[bot]@users.noreply.github.com 2022-02-24T03:11:27.7009572Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2022-02-24T03:11:27.7051079Z [command]/usr/bin/git remote rm origin 2022-02-24T03:11:27.7108208Z [command]/usr/bin/git remote add origin ***github.com/iptv-org/iptv.git 2022-02-24T03:11:27.7137107Z Git configured… 🔧 2022-02-24T03:11:27.7140966Z Starting to commit changes… 2022-02-24T03:11:27.7156735Z [command]/usr/bin/git ls-remote --heads ***github.com/iptv-org/iptv.git gh-pages 2022-02-24T03:11:27.8420096Z 0a91537b35a9155c4836be2002cd2dabc6843de3 refs/heads/gh-pages 2022-02-24T03:11:27.8426252Z Creating worktree… 2022-02-24T03:11:27.8442840Z [command]/usr/bin/git fetch --no-recurse-submodules --depth=1 origin gh-pages 2022-02-24T03:11:28.0517714Z From https://github.com/iptv-org/iptv 2022-02-24T03:11:28.0518567Z * branch gh-pages -> FETCH_HEAD 2022-02-24T03:11:28.0519432Z * [new branch] gh-pages -> origin/gh-pages 2022-02-24T03:11:28.0553773Z [command]/usr/bin/git worktree add --no-checkout --detach github-pages-deploy-action-temp-deployment-folder 2022-02-24T03:11:28.0580723Z Preparing worktree (detached HEAD bd7efff4b) 2022-02-24T03:11:28.0626387Z [command]/usr/bin/git checkout -B gh-pages origin/gh-pages 2022-02-24T03:11:28.2543064Z Previous HEAD position was bd7efff4b [Bot] Update README.md 2022-02-24T03:11:28.2551102Z Switched to and reset branch 'gh-pages' 2022-02-24T03:11:28.2553425Z branch 'gh-pages' set up to track 'origin/gh-pages'. 2022-02-24T03:11:28.2605419Z [command]/usr/bin/rsync -q -av --checksum --progress /home/runner/work/iptv/iptv/.gh-pages/. github-pages-deploy-action-temp-deployment-folder --exclude .ssh --exclude .git --exclude .github 2022-02-24T03:11:28.4934418Z Checking if there are files to commit… 2022-02-24T03:11:28.5205234Z [command]/usr/bin/git add --all . 2022-02-24T03:11:29.2013651Z [command]/usr/bin/git checkout -b github-pages-deploy-action/6j2j8t81g 2022-02-24T03:11:29.2048477Z Switched to a new branch 'github-pages-deploy-action/6j2j8t81g' 2022-02-24T03:11:29.2068373Z [command]/usr/bin/git commit -m [Bot] Deploy to GitHub Pages --quiet --no-verify 2022-02-24T03:11:29.2173625Z [command]/usr/bin/git push --force ***github.com/iptv-org/iptv.git github-pages-deploy-action/6j2j8t81g:gh-pages 2022-02-24T03:11:31.6304032Z To https://github.com/iptv-org/iptv.git 2022-02-24T03:11:31.6305262Z 0a91537b3..63ed79522 github-pages-deploy-action/6j2j8t81g -> gh-pages 2022-02-24T03:11:31.6366607Z Changes committed to the gh-pages branch… 📦 2022-02-24T03:11:31.6367300Z Running post deployment cleanup jobs… 🗑️ 2022-02-24T03:11:31.6368159Z [command]/usr/bin/git worktree remove github-pages-deploy-action-temp-deployment-folder --force 2022-02-24T03:11:31.6551799Z Completed deployment successfully! ✅ 2022-02-24T03:11:31.6667384Z ##[group]Run JamesIves/github-pages-deploy-action@4.1.1 2022-02-24T03:11:31.6667842Z with: 2022-02-24T03:11:31.6668208Z repository-name: iptv-org/api 2022-02-24T03:11:31.6668591Z branch: gh-pages 2022-02-24T03:11:31.6668940Z folder: .api 2022-02-24T03:11:31.6669420Z token: *** 2022-02-24T03:11:31.6669771Z git-config-name: iptv-bot[bot] 2022-02-24T03:11:31.6670252Z git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com 2022-02-24T03:11:31.6670782Z commit-message: [Bot] Deploy to iptv-org/api 2022-02-24T03:11:31.6671183Z clean: false 2022-02-24T03:11:31.6671524Z env: 2022-02-24T03:11:31.6671865Z deployment_status: success 2022-02-24T03:11:31.6672230Z ##[endgroup] 2022-02-24T03:11:31.7470345Z 2022-02-24T03:11:31.7471446Z GitHub Pages Deploy Action 🚀 2022-02-24T03:11:31.7471736Z 2022-02-24T03:11:31.7472256Z 🚀 Getting Started Guide: https://github.com/marketplace/actions/deploy-to-github-pages 2022-02-24T03:11:31.7473188Z ❓ Discussions / Q&A: https://github.com/JamesIves/github-pages-deploy-action/discussions 2022-02-24T03:11:31.7473984Z 🔧 Report a Bug: https://github.com/JamesIves/github-pages-deploy-action/issues 2022-02-24T03:11:31.7474344Z 2022-02-24T03:11:31.7474658Z 📣 Maintained by James Ives: https://jamesiv.es 2022-02-24T03:11:31.7475237Z 💖 Support: https://github.com/sponsors/JamesIves 2022-02-24T03:11:31.7480108Z Checking configuration and starting deployment… 🚦 2022-02-24T03:11:31.7484085Z Deploying using Deploy Token… 🔑 2022-02-24T03:11:31.7484921Z Configuring git… 2022-02-24T03:11:31.7529578Z [command]/usr/bin/git config user.name iptv-bot[bot] 2022-02-24T03:11:31.7599386Z [command]/usr/bin/git config user.email 84861620+iptv-bot[bot]@users.noreply.github.com 2022-02-24T03:11:31.7643451Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2022-02-24T03:11:31.7672007Z Unable to unset previous git config authentication as it may not exist, continuing… 2022-02-24T03:11:31.7685095Z [command]/usr/bin/git remote rm origin 2022-02-24T03:11:31.7734594Z [command]/usr/bin/git remote add origin ***github.com/iptv-org/api.git 2022-02-24T03:11:31.7763092Z Git configured… 🔧 2022-02-24T03:11:31.7766976Z Starting to commit changes… 2022-02-24T03:11:31.7782319Z [command]/usr/bin/git ls-remote --heads ***github.com/iptv-org/api.git gh-pages 2022-02-24T03:11:31.9218562Z 8f3b1acd5a1e08dec57e6c244cd35205b5eaddfd refs/heads/gh-pages 2022-02-24T03:11:31.9225372Z Creating worktree… 2022-02-24T03:11:31.9242273Z [command]/usr/bin/git fetch --no-recurse-submodules --depth=1 origin gh-pages 2022-02-24T03:11:32.9722193Z From https://github.com/iptv-org/api 2022-02-24T03:11:32.9723015Z * branch gh-pages -> FETCH_HEAD 2022-02-24T03:11:32.9723932Z * [new branch] gh-pages -> origin/gh-pages 2022-02-24T03:11:32.9759380Z [command]/usr/bin/git worktree add --no-checkout --detach github-pages-deploy-action-temp-deployment-folder 2022-02-24T03:11:32.9787974Z Preparing worktree (detached HEAD bd7efff4b) 2022-02-24T03:11:32.9840586Z [command]/usr/bin/git checkout -B gh-pages origin/gh-pages 2022-02-24T03:11:33.0394681Z Previous HEAD position was bd7efff4b [Bot] Update README.md 2022-02-24T03:11:33.0398066Z fatal: cannot update the ref 'refs/heads/gh-pages': unable to append to '/home/runner/work/iptv/iptv/.git/logs/refs/heads/gh-pages': Permission denied 2022-02-24T03:11:33.0406893Z Running post deployment cleanup jobs… 🗑️ 2022-02-24T03:11:33.0424374Z [command]/usr/bin/git worktree remove github-pages-deploy-action-temp-deployment-folder --force 2022-02-24T03:11:33.0517176Z ##[error]The deploy step encountered an error: There was an error creating the worktree: The process '/usr/bin/git' failed with exit code 128 ❌ ❌ 2022-02-24T03:11:33.0526907Z Deployment failed! ❌ 2022-02-24T03:11:33.0617425Z Post job cleanup. 2022-02-24T03:11:33.1792702Z [command]/usr/bin/git version 2022-02-24T03:11:33.1837032Z git version 2.35.1 2022-02-24T03:11:33.1869695Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-02-24T03:11:33.1904465Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-02-24T03:11:33.2124288Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-02-24T03:11:33.2159392Z [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' || : 2022-02-24T03:11:33.2547934Z Cleaning up orphan processes ```
JamesIves commented 2 years ago

In the logs it looks like you're running version 4.1.1, have you tried the latest version? Can you try using a personal access token as opposed to tibdex/github-app-token@v1 and see if you still encounter the issue?

If that doesn't work can you please create a repo that I can use to reproduce the issue?

freearhey commented 2 years ago

Test repo: https://github.com/iptv-org/github-pages-deploy-action-test

Changing the version to v4.2.5 and using PAT instead of app token did not help: https://github.com/iptv-org/github-pages-deploy-action-test/runs/5321614305?check_suite_focus=true

But after some more tests, I found out that the error appears only when there is a repo-sync/pull-request action in the list (and only in this order):

https://github.com/iptv-org/github-pages-deploy-action-test/runs/5321712342?check_suite_focus=true

But if you put repo-sync/pull-request at the end, everything works fine:

https://github.com/iptv-org/github-pages-deploy-action-test/runs/5321744278?check_suite_focus=true

JamesIves commented 2 years ago

If you have a spare moment, do you mind trying JamesIves/github-pages-deploy-action@releases/v4-permission? I'm testing a variation of this which writes 777 to the folder that is set to be deployed which may fix this problem for you.

freearhey commented 2 years ago

Unfortunately, the result is the same: https://github.com/iptv-org/github-pages-deploy-action-test/runs/5373757065?check_suite_focus=true

JamesIves commented 2 years ago

Thanks for double checking that. The error indicates that somewhere in the git flow something is being run as root according to SO but I don't see where anything in either repo-sync or this action is performing that step. The closest thing is that the temporary deployment directory gets chmodded but that shouldn't have any baring over the git logs.

Give me some time and I'll see what I can come up with, it's a pretty packed week for me so I may not get to this until the weekend.

freearhey commented 2 years ago

No problem. I've already changed the order in which the actions are called in the main repository and so far it's working fine.

Mister-Hope commented 2 years ago

I am facing the same issue, but I only use actions/cache@v3, actions/checkout@v3 actions/setup-node@v3 besides this one. So the problem seems not be related by repo-sync/pull-request

Here is my log:

https://github.com/vuepress-theme-hope/vuepress-theme-hope/runs/5827815705?check_suite_focus=true

image

And it failed.

JamesIves commented 2 years ago

I am facing the same issue, but I only use actions/cache@v3, actions/checkout@v3 actions/setup-node@v3 besides this one. So the problem seems not be related by repo-sync/pull-request

Here is my log:

https://github.com/vuepress-theme-hope/vuepress-theme-hope/runs/5827815705?check_suite_focus=true

image

And it failed.

I'm wondering if this might be a parallel deployment-style issue. Can you try running these deployments with force: false?

Mister-Hope commented 2 years ago

I can try that, but I am making deployment to different repos, and I am deploying them one by one, so how could I face this issue?

BTW, I temporily sovle it by using a matrix.

arifszn commented 2 years ago

Does it have anything to do with #1110?

JamesIves commented 1 year ago

Closing this as this issue is stale and believed to be caused by an earlier version. Please re-open if you still experience this and it's a problem.

0xmaayan commented 1 year ago

Started getting this error today, my yaml file set up

- name: Deploy
  uses: JamesIves/github-pages-deploy-action@v4
  with:
    branch: gh-pages
    folder: ./apps/nextjs-example/out
image