You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My documentation works fine when I run it on the "dev".
However, I now would like to add documentation for each future new tagged version.
My package is not registered, as I don't think there is yet enough interest.
The documentation indicates how to work with "Tagbot"; however, I suppose this won't be relevant since the package is not registered.
Is there a way to generate the documentation using only the tags from Github?
for reference, here is the setup for Documenter
name: Documentation
on:
push:
branches:
- main
tags: '*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.6'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
run: julia --project=docs/ docs/make.jl
My documentation works fine when I run it on the "dev".
However, I now would like to add documentation for each future new tagged version.
My package is not registered, as I don't think there is yet enough interest.
The documentation indicates how to work with "Tagbot"; however, I suppose this won't be relevant since the package is not registered.
Is there a way to generate the documentation using only the tags from Github?
for reference, here is the setup for
Documenter
and the
make.jl
The text was updated successfully, but these errors were encountered: