-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0d7825
commit 2869d9d
Showing
3 changed files
with
171 additions
and
224 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 |
---|---|---|
|
@@ -115,27 +115,6 @@ jobs: | |
|
||
### | ||
|
||
# clone the library repo | ||
- name: Checkout Samples | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'quixio/quix-samples' | ||
ref: 'main' # when a dev branch exists we can get the dev content | ||
#ref: '{{ steps.extract_branch.outputs.branch }}' | ||
path: 'samples' | ||
|
||
# use our own GitHub Action to bring in library readme files | ||
- name: Quix Samples readme.md importer | ||
uses: quixio/[email protected] | ||
id: readme_importer | ||
with: | ||
LIBRARY_REPO_PATH: "samples" | ||
DOCS_PATH: "" | ||
REPLACEMENT_PLACEHOLDER: "#ConnectorsGetInsertedHere" | ||
CONNECTORS_TAG: "Connectors" | ||
NAV_INDENT_SPACES: "6" | ||
CONNECTORS_TITLE_REPLACEMENT: "[//]: <> (#connectors_tile_replacement)" | ||
|
||
# for debugging.. | ||
# crawl the files, print the contents of specific files | ||
- name: Crawl and print file hierarchy | ||
|
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 |
---|---|---|
|
@@ -121,41 +121,6 @@ jobs: | |
### END | ||
#################################################### | ||
|
||
|
||
#################################################### | ||
### IMPORT LIBRARY README.MD FILES INTO DOCS | ||
#################################################### | ||
# clone the library repo | ||
- name: Checkout Samples | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'quixio/quix-samples' | ||
ref: 'main' # when a dev branch exists we can get the dev content | ||
#ref: '{{ steps.extract_branch.outputs.branch }}' | ||
path: 'samples' | ||
|
||
# use our own GitHub Action to bring in library readme files | ||
- name: Quix Samples readme.md importer | ||
uses: quixio/[email protected] | ||
id: readme_importer | ||
with: | ||
LIBRARY_REPO_PATH: "samples" | ||
DOCS_PATH: "" | ||
REPLACEMENT_PLACEHOLDER: "#ConnectorsGetInsertedHere" | ||
CONNECTORS_TAG: "Connectors" | ||
NAV_INDENT_SPACES: "6" | ||
CONNECTORS_TITLE_REPLACEMENT: "[//]: <> (#connectors_tile_replacement)" | ||
|
||
- name: Output Importer Logs | ||
run: | | ||
for i in ${{ steps.readme_importer.outputs.logs }}; do | ||
echo $i | ||
done | ||
#################################################### | ||
### END OF IMPORT LIBRARY README.MD's | ||
#################################################### | ||
|
||
- name: Build MkDocs Site | ||
run: mkdocs build --no-directory-urls | ||
env: | ||
|
Oops, something went wrong.