Merge pull request #4047 from nymtech/chore/sdk-docs-restructure #299
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
name: ci-docs | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: master | |
paths: | |
- 'documentation/docs/**' | |
jobs: | |
build: | |
runs-on: custom-linux | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install rsync | |
run: sudo apt-get install rsync | |
- uses: rlespinasse/github-slug-action@v3.x | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Rust stable | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Build all binaries | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --workspace --release | |
- name: Install mdbook | |
run: (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.4.35" mdbook) | |
- name: Install mdbook plugins | |
run: | | |
cargo install --vers "=0.2.2" mdbook-variables && cargo install \ | |
--vers "^1.8.0" mdbook-admonish --force && cargo install --vers \ | |
"^0.1.2" mdbook-last-changed && cargo install --vers "^0.1.2" mdbook-theme \ | |
&& cargo install --vers "^0.7.7" mdbook-linkcheck \ | |
# && cd documentation \ | |
# && mdbook-admonish install dev-portal \ | |
# && mdbook-admonish install docs \ | |
# && mdbook-admonish install operators | |
- name: Build all projects in documentation/ & move to ~/dist/docs/ | |
run: cd documentation && ./build_all_to_dist.sh | |
continue-on-error: false | |
- name: Deploy branch to CI www | |
continue-on-error: true | |
uses: easingthemes/ssh-deploy@main | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.CI_WWW_SSH_PRIVATE_KEY }} | |
ARGS: "-rltgoDzvO --delete" | |
SOURCE: "dist/docs/" | |
REMOTE_HOST: ${{ secrets.CI_WWW_REMOTE_HOST }} | |
REMOTE_USER: ${{ secrets.CI_WWW_REMOTE_USER }} | |
TARGET: ${{ secrets.CI_WWW_REMOTE_TARGET }}/docs-${{ env.GITHUB_REF_SLUG }} | |
EXCLUDE: "/node_modules/" | |
- name: Matrix - Node Install | |
run: npm install | |
working-directory: .github/workflows/support-files | |
- name: Matrix - Send Notification | |
env: | |
NYM_NOTIFICATION_KIND: ci-docs | |
NYM_PROJECT_NAME: "Docs CI" | |
NYM_CI_WWW_BASE: "${{ secrets.NYM_CI_WWW_BASE }}" | |
NYM_CI_WWW_LOCATION: "docs-${{ env.GITHUB_REF_SLUG }}" | |
GIT_COMMIT_MESSAGE: "${{ github.event.head_commit.message }}" | |
GIT_BRANCH: "${GITHUB_REF##*/}" | |
MATRIX_SERVER: "${{ secrets.MATRIX_SERVER }}" | |
MATRIX_ROOM: "${{ secrets.MATRIX_ROOM_DOCS }}" | |
MATRIX_USER_ID: "${{ secrets.MATRIX_USER_ID }}" | |
MATRIX_TOKEN: "${{ secrets.MATRIX_TOKEN }}" | |
MATRIX_DEVICE_ID: "${{ secrets.MATRIX_DEVICE_ID }}" | |
IS_SUCCESS: "${{ job.status == 'success' }}" | |
uses: docker://keybaseio/client:stable-node | |
with: | |
args: .github/workflows/support-files/notifications/entry_point.sh |