We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef390a commit f5aee89Copy full SHA for f5aee89
2 files changed
.github/workflows/pages.yml
@@ -20,9 +20,10 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
23
- mdBook:
24
- - run: cargo install mdbook
25
- - run: mdbook build && mv book _site
+ - name: "mdbook"
+ run: |
+ cargo install mdbook
26
+ mdbook build && mv book _site
27
28
# OPTIONAL: Replace the above with one of these for your project:
29
#
.vscode/extensions.json
@@ -1,9 +1,11 @@
1
{
2
"recommendations": [
3
- "github.vscode-github-actions"
+ "me-dutour-mathieu.vscode-github-actions"
4
],
5
"unwantedRecommendations": [
6
// doesn't play well with Jujutsu
7
- "eamodio.gitlens"
+ "eamodio.gitlens",
8
+ // doesn't work inside devcontainer on local
9
+ "github.vscode-github-actions"
10
]
11
}
0 commit comments