forked from containers/nri-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix yaml syntax that got broken in 19bbdd5.
- Loading branch information
Showing
1 changed file
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,18 +38,18 @@ jobs: | |
make verify | ||
working-directory: src/github.com/containerd/nri-plugin-collection | ||
|
||
- name: Build docs | ||
run: | | ||
make site-build | ||
make clean-html | ||
- name: Build docs | ||
run: | | ||
make site-build | ||
make clean-html | ||
- name: Install gh-pages build dependencies | ||
run: | | ||
pip3 install --user -r docs/requirements.txt | ||
echo "`python3 -m site --user-base`/bin" >> $GITHUB_PATH | ||
- name: Install gh-pages build dependencies | ||
run: | | ||
pip3 install --user -r docs/requirements.txt | ||
echo "`python3 -m site --user-base`/bin" >> $GITHUB_PATH | ||
- name: Verify update of gh-pages | ||
run: | | ||
git config user.name "Github" | ||
git config user.email "[email protected]" | ||
./scripts/build/update-gh-pages.sh | ||
- name: Verify update of gh-pages | ||
run: | | ||
git config user.name "Github" | ||
git config user.email "[email protected]" | ||
./scripts/build/update-gh-pages.sh |