pengx17 / logseq-publish

Archived. Please check https://github.com/logseq/publish-spa instead

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The deploy step encountered an error: The process '/usr/bin/git' failed with exit code 128 ❌ Deployment failed!

YorkJong opened this issue · comments

commented

I got the error on Deploy phase.

The error message is as follows:

Error: The deploy step encountered an error: The process '/usr/bin/git' failed with exit code 128 ❌
Deployment failed! ❌

Warning: The set-output command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

commented

Problem solved by using github-pages-deploy-action@v4 as follows:

      - name: Deploy 🚀
        uses: JamesIves/github-pages-deploy-action@v4
        with:
          folder: www
commented

Thanks for sharing.