Skip to content

Commit 5675a00

Browse files
authored
[skip ci] Fix typo
1 parent 334cd79 commit 5675a00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pr_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
2121
echo "::set-env name=PR_BUILD_ID::${GITHUB_BASE_REF}/${pr_num}"
2222
echo "::set-env name=DOCS_BASE_DIR::build/html"
23-
echo "::set-env name=DOCS_OUTPUT_DIR::${DOCS_BASE_DIR}/${PR_BUILD_ID}"
23+
echo "::set-env name=DOCS_OUTPUT_DIR::build/html/${GITHUB_BASE_REF}/${pr_num}"
2424
2525
- name: Checkout cpython repository
2626
uses: actions/checkout@v2
@@ -63,7 +63,7 @@ jobs:
6363
git add .
6464
if [ $(git status -s | wc -l) -eq 0 ]; then echo "nothing to commit"; exit 0; fi
6565
git commit -m 'update html'
66-
git push "https://${{ github.token }}@github.com/${{ github.repository }}.git" gh-pages:gh-pages
66+
git push --quiet "https://${{ github.token }}@github.com/${{ github.repository }}.git" gh-pages:gh-pages
6767
6868
- name: Notify the URL of the built docs
6969
uses: thollander/actions-comment-pull-request@master

0 commit comments

Comments
 (0)