Skip to content

Commit c1bc1a9

Browse files
authored
Merge pull request #6 from JuliaComputing/jk/multiple-ci-fixes
2 parents de8afb7 + 4d4b342 commit c1bc1a9

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/Documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
- name: Build and deploy
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
33-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
33+
DOCUMENTER_KEY: ${{ secrets.JULIASIM_REGISTRY_SSH_KEY }} # For authentication with SSH deploy key
3434
run: julia --project=docs/ docs/make.jl

.github/workflows/TagBot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ on:
66
workflow_dispatch:
77
jobs:
88
TagBot:
9-
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
9+
if: |
10+
github.event_name == 'workflow_dispatch' ||
11+
(
12+
github.actor == 'ChrisRackauckas' &&
13+
startsWith(github.event.comment.body, 'Triggering TagBot')
14+
)
1015
runs-on: self-hosted
1116
steps:
1217
- uses: JuliaRegistries/TagBot@v1
1318
with:
1419
token: ${{ secrets.GITHUB_TOKEN }}
15-
ssh: ${{ secrets.DOCUMENTER_KEY }}
20+
ssh: ${{ secrets.JULIASIM_REGISTRY_SSH_KEY }}

docs/make.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ DocMeta.setdocmeta!(Multibody, :DocTestSetup, :(using Multibody); recursive = tr
66
makedocs(;
77
modules = [Multibody],
88
authors = "Yingbo Ma <[email protected]> and contributors",
9-
repo = "https://github.com/YingboMa/Multibody.jl/blob/{commit}{path}#{line}",
109
sitename = "Multibody.jl",
1110
format = Documenter.HTML(;
1211
prettyurls = get(ENV, "CI", nothing) == "true",
@@ -17,4 +16,4 @@ makedocs(;
1716

1817
deploydocs(;
1918
repo = "github.com/JuliaComputing/Multibody.jl",
20-
devbranch = "master")
19+
devbranch = "main")

0 commit comments

Comments
 (0)