-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'lukas/gh/reintroduce-man-page-releases' into maint
* lukas/gh/reintroduce-man-page-releases: otp: Fix release of man pages otp: Add man pages to default doc target if available gh: Re-introduce build and release of man pages
- Loading branch information
Showing
4 changed files
with
35 additions
and
23 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
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 |
---|---|---|
|
@@ -421,16 +421,17 @@ jobs: | |
RUN make release docs release_docs && sudo make install-docs | ||
EOF | ||
- name: Release docs to publish | ||
run: | | ||
docker run -v $PWD/:/github otp \ | ||
"make release_docs DOC_TARGETS='html' RELEASE_ROOT=/github/docs" | ||
sudo chown -R `whoami` docs | ||
cd docs && tar czf ../otp_doc_html.tar.gz * | ||
run: .github/scripts/release-docs.sh | ||
- name: Upload html documentation archive | ||
uses: actions/[email protected] | ||
with: | ||
name: otp_doc_html | ||
path: otp_doc_html.tar.gz | ||
- name: Upload man documentation archive | ||
uses: actions/[email protected] | ||
with: | ||
name: otp_doc_man | ||
path: otp_doc_man.tar.gz | ||
- name: Trigger rebuild of erlang.org/docs/ | ||
if: github.ref_name == 'master' && github.repository == 'erlang/otp' | ||
env: | ||
|
@@ -603,6 +604,10 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
name: otp_doc_html | ||
- name: Download man docs | ||
uses: actions/[email protected] | ||
with: | ||
name: otp_doc_man | ||
|
||
## We add the correct version name into the file names | ||
## and create the hash files for all assets | ||
|
Empty file.
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