Skip to content

Commit c43eddf

Browse files
committed
ci trigger
1 parent 8ab64a3 commit c43eddf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci-nojvm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
paths:
66
- "**.m"
77
- ".github/workflows/ci-nojvm.yml"
8+
- "!private/publish_gen_index_html.m"
9+
- "!octave_build.m"
810

911
jobs:
1012

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ on:
55
paths:
66
- "**.m"
77
- ".github/workflows/ci.yml"
8-
8+
- "!private/publish_gen_index_html.m"
9+
- "!octave_build.m"
910

1011
jobs:
1112

private/publish_gen_index_html.m

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,11 @@ function publish_gen_index_html(pkg_name, tagline, project_url, outdir)
3333
mkdir(outdir);
3434
end
3535

36-
mr = matlabRelease();
37-
38-
3936
txt = ["<!DOCTYPE html>", ...
4037
"<head>",...
4138
'<meta name="color-scheme" content="dark light">', ...
4239
'<meta name="viewport" content="width=device-width, initial-scale=1">', ...
43-
'<meta generator="Matlab ' + mr.Release + '">', ...
40+
'<meta name="generator" content="Matlab ' + matlabRelease().Release + '">', ...
4441
"<title>" + pkg_name + " API</title>", ...
4542
"</head>", ...
4643
"<body>", ...

0 commit comments

Comments
 (0)