Skip to content

Commit f5aee89

Browse files
committed
fix workflow
1 parent cef390a commit f5aee89

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/pages.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23-
mdBook:
24-
- run: cargo install mdbook
25-
- run: mdbook build && mv book _site
23+
- name: "mdbook"
24+
run: |
25+
cargo install mdbook
26+
mdbook build && mv book _site
2627
2728
# OPTIONAL: Replace the above with one of these for your project:
2829
#

.vscode/extensions.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"recommendations": [
3-
"github.vscode-github-actions"
3+
"me-dutour-mathieu.vscode-github-actions"
44
],
55
"unwantedRecommendations": [
66
// doesn't play well with Jujutsu
7-
"eamodio.gitlens"
7+
"eamodio.gitlens",
8+
// doesn't work inside devcontainer on local
9+
"github.vscode-github-actions"
810
]
911
}

0 commit comments

Comments
 (0)