Skip to content

Commit

Permalink
github/workflows: fix broken yaml
Browse files Browse the repository at this point in the history
Fix yaml syntax that got broken in
19bbdd5.
  • Loading branch information
marquiz committed Jun 21, 2023
1 parent 4227e4d commit 33a52ac
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/project-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 33a52ac

Please sign in to comment.