generated from ansys/template
-
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 job dependency * Disable conditions and unwanted release steps * DL artifacts and add to rlelease * Fix paths * Revert "Disable conditions and unwanted release steps" This reverts commit 3afd2dc. * Fix condition for dev docs deploy * Update documentation path * Remove extra args in gh release
- Loading branch information
1 parent
1c25436
commit 5f433f1
Showing
2 changed files
with
19 additions
and
7 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 |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
name: "Deploy development documentation" | ||
runs-on: ubuntu-latest | ||
needs: [ integration_checks ] | ||
if: github.event_name == 'push' | ||
if: github.event_name == 'push' && !contains(github.ref, 'refs/tags') | ||
steps: | ||
- uses: pyansys/actions/doc-deploy-dev@v4 | ||
with: | ||
|
@@ -53,7 +53,7 @@ jobs: | |
|
||
Release: | ||
if: contains(github.ref, 'refs/tags') && github.event_name == 'push' | ||
needs: doc-deploy-dev | ||
needs: integration_checks | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -66,11 +66,23 @@ jobs: | |
- uses: actions/download-artifact@v3 | ||
with: | ||
name: ansys-grantami-bomanalytics-wheel | ||
path: ~/dist | ||
path: dist | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: Documentation-pdf | ||
path: dist | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: Documentation-html | ||
path: dist/documentation-html/ | ||
|
||
- name: "Compressing HTML documentation" | ||
uses: vimtor/[email protected] | ||
with: | ||
files: dist/documentation-html/ | ||
dest: dist/documentation-html.zip | ||
|
||
- name: "Deploy stable documentation" | ||
uses: pyansys/actions/doc-deploy-stable@v4 | ||
|
@@ -93,6 +105,6 @@ jobs: | |
with: | ||
generate_release_notes: true | ||
files: | | ||
~/**/*.whl | ||
./**/*.zip | ||
dist/*.whl | ||
dist/documentation-html.zip | ||
dist/*.pdf |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ license = "MIT" | |
authors = ["ANSYS, Inc."] | ||
maintainers = ["PyAnsys Maintainers <[email protected]>"] | ||
repository = "https://github.com/pyansys/grantami-bomanalytics" | ||
documentation = "https://grantami.docs.pyansys.com" | ||
documentation = "https://bomanalytics.grantami.docs.pyansys.com" | ||
readme = "README.rst" | ||
keywords = [ | ||
"Ansys", | ||
|