Skip to content

Commit

Permalink
push-doc.yml: docker -u ...
Browse files Browse the repository at this point in the history
I was seeing a chmod getting errors, although they may not terminate
the JamesIves/github-pages-deploy-action@v4 action.
  • Loading branch information
dlmiles committed May 9, 2023
1 parent a2bfde9 commit ee5e695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
tags: spinaldoc-pdf
file: pdf.Dockerfile
- name: Check links
run: docker run --rm -v $PWD:/docs -e sphinx_html_baseurl -e sphinx_github_url spinaldoc-pdf make linkcheck
run: docker run --rm -u $(id -u $USER):$(id -g $USER) -v $PWD:/docs -e sphinx_html_baseurl -e sphinx_github_url spinaldoc-pdf make linkcheck
- name: Build multiversioned doc
run: docker run --rm -v $PWD:/docs -e sphinx_html_baseurl -e sphinx_github_url spinaldoc-pdf sphinx-multiversion source docs/html
run: docker run --rm -u $(id -u $USER):$(id -g $USER) -v $PWD:/docs -e sphinx_html_baseurl -e sphinx_github_url spinaldoc-pdf sphinx-multiversion source docs/html
- name: Add .nojekill
run: sudo touch docs/html/.nojekyll
- name: Add redirection to master
Expand Down

0 comments on commit ee5e695

Please sign in to comment.