Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support: Action failed with "The process '/usr/bin/git' failed with exit code 1" #998

Open
3 tasks done
kvabapo opened this issue Oct 2, 2023 · 1 comment
Open
3 tasks done
Assignees
Labels
support User support

Comments

@kvabapo
Copy link

kvabapo commented Oct 2, 2023

Checklist

  • I am using the latest version of this action.
  • I have read the latest README and followed the instructions.
  • I have read the latest GitHub Actions official documentation and learned the basic spec and concepts.

Describe your question

Were running multiple github actions on our repo every hour i.e. 10 jobs run every hour.

Were facing this error
careos-frontend@1c43450 2566-10-02 10-41-21

it says we need to "git pull" but I can't find that option on the README page. Can you help with this error?

Relevant links

YAML workflow:
 - name: Deploy
        if: always()
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./apps/qa/reports
          destination_dir: ./automation/${{ github.run_id }}

Relevant log output

No response

Additional context.

No response

@kvabapo kvabapo added the support User support label Oct 2, 2023
@peaceiris
Copy link
Owner

You can use the concurrency.group to run the jobs sequentially.

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}

Please take a look at the README.md for more details.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
support User support
Projects
None yet
Development

No branches or pull requests

2 participants