Skip to content

Commit 123e238

Browse files
Merge pull request #21 from LCSB-BioCore/develop
Develop
2 parents e03d201 + e17d5f4 commit 123e238

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

.github/workflows/TagBot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.DS_Store
2+
13
# Files generated by invoking Julia with --code-coverage
24
*.jl.cov
35
*.jl.*.cov

docs/make.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ using Documenter, DistributedData
22

33
makedocs(modules = [DistributedData],
44
clean = false,
5-
format = Documenter.HTML(prettyurls = !("local" in ARGS)),
5+
format = Documenter.HTML(prettyurls = !("local" in ARGS),
6+
canonical = "https://lcsb-biocore.github.io/DistributedData.jl/stable/",
7+
assets = ["assets/logo.ico"]),
68
sitename = "DistributedData.jl",
79
authors = "The developers of DistributedData.jl",
810
linkcheck = !("skiplinks" in ARGS),
@@ -18,5 +20,5 @@ deploydocs(
1820
target = "build",
1921
branch = "gh-pages",
2022
devbranch = "develop",
21-
versions = "stable" => "v^",
23+
push_preview = true
2224
)

docs/src/assets/logo.ico

16.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)