-
Notifications
You must be signed in to change notification settings - Fork 14
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
Deploy to a different repository #15
Comments
I'm not familiar enough with Documenter to know what it would take. The action effectively runs julia --color=yes --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
julia --color=yes --project=docs/ docs/make.jl in most cases. Does the Julia part of the deployment to a different repo happen in You can checkout a different repo in the workflow by adding an appropriate input to the checkout action, in case that's needed: - uses: actions/checkout@v2
with:
repository: julialang/Example.jl Hope this is useful. If you tell me how it works in Documenter or via other CI systems, I might be able to help you out better. |
Okay that is good to know. I actually need that, since the make.jl is in PlotDocs.jl. |
- uses: actions/checkout@v2
with:
repository: julialang/Example.jl
ref: ${{ github.ref }} as part of the workflow |
So it turned out that it doesn't work because Documenter checks for the |
Can I use this action to deploy the docs in a different repo than the action is run?
The text was updated successfully, but these errors were encountered: