# Problem with CI of documentation

**URL:** https://discourse.julialang.org/t/problem-with-ci-of-documentation/98480
**Category:** Package Management
**Created:** [May 8, 2023, 2:45pm UTC](https://discourse.julialang.org/t/problem-with-ci-of-documentation/98480 "2023-05-08T14:45:09Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![vladdez](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/vladdez/32/45806_2.png) [@vladdez](https://discourse.julialang.org/u/vladdez)
#### Post date: [May 8, 2023, 2:45pm UTC](https://discourse.julialang.org/t/problem-with-ci-of-documentation/98480/1 "2023-05-08T14:45:09Z")

</div>

Hi! I am trying to deploy my own library, but I have a problem with GitHub Actions: CI.yaml and docs.yaml do not work. And … it’s even hard to explain what is the problem.

Here are some screenshots:

- error in build and deploy

 ![image](https://global.discourse-cdn.com/julialang/original/3X/d/b/db8150c8009e45591761ad67a11fc0dd99b31dbe.png)

- error in CompatHelper  
 ![image](https://global.discourse-cdn.com/julialang/original/3X/0/4/04ab87fde7eeec750d3a5061b431764fa7b98f93.png)

The only I could say that errors occur on this string in docs.yaml [https://github.com/vladdez/ERPExplorer.jl/blob/main/.github/workflows/docs.yml](https://github.com/vladdez/ERPExplorer.jl/blob/main/.github/workflows/docs.yml)

```julia
 uses: julia-actions/julia-docdeploy@v1
       with:
           prefix: xvfb-run

```

If you want to see more: link to the project’s GitHub Actions: [Docs build and deploy · Workflow runs · vladdez/ERPExplorer.jl · GitHub](https://github.com/vladdez/ERPExplorer.jl/actions/workflows/docs.yml)

Upd: I changed a bit docs.yaml and now I see this error. Which strange because in the same job it was stated that Documenter is successfully installed.

 ![image](https://global.discourse-cdn.com/julialang/original/3X/0/3/036c9481946f5ad5a2d433f5914a648dcb707424.png)

Maybe the problem is environment setup? Mine is the following:

```julia
    - name: Build and deploy docs
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

```

---

<div class="post-metadata">

### Author: ![gdalle](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/gdalle/32/27854_2.png) [@gdalle](https://discourse.julialang.org/u/gdalle)
#### Post date: [May 8, 2023, 3:26pm UTC](https://discourse.julialang.org/t/problem-with-ci-of-documentation/98480/2 "2023-05-08T15:26:12Z")

</div>

I think I’ve seen similar problems before, the issue was that the GitHub action didn’t have the appropriate write access to the repo
