This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
Publish documentation to Zoomin #75
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: Publish documentation to Zoomin | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
description: Artifact name to be published to Zoomin | |
required: true | |
permissions: | |
contents: write | |
jobs: | |
publish: | |
name: Publish the documentation | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download artifact | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
DOWNLOAD_DIR=$(openssl rand -hex 8) | |
echo "DOWNLOAD_DIR=${DOWNLOAD_DIR}" >> $GITHUB_ENV | |
gh run download --name ${{ github.event.inputs.name }} --dir "${DOWNLOAD_DIR}" | |
- name: Install dependencies | |
run: | | |
sudo apt install -y sshpass | |
- name: Add custom.properties and zip | |
env: | |
ZOOMIN_TITLE: ${{ vars.ZOOMIN_TITLE || 'nrf-asset-tracker' }} | |
ZOOMIN_BOOK_TITLE: | |
${{ vars.ZOOMIN_BOOK_TITLE || 'nRF Asset Tracker' }} | |
run: | | |
cd ${{ env.DOWNLOAD_DIR }} | |
touch custom.properties | |
echo "manual.name=${ZOOMIN_TITLE// /_}" >> custom.properties | |
echo "booktitle=${ZOOMIN_BOOK_TITLE}" >> custom.properties | |
ZIP_FILENAME=${{ github.workspace }}/zoomin_nrf_asset_tracker_${{ github.sha }}.zip | |
echo "ZIP_FILENAME=${ZIP_FILENAME}" >> $GITHUB_ENV | |
zip -r -q "${ZIP_FILENAME}" . | |
- name: Upload Zoomin documentation | |
env: | |
ZOOMIN_SFTP_SERVER: | |
${{ vars.ZOOMIN_SFTP_SERVER || 'upload-v1.zoominsoftware.io' }} | |
run: | | |
# Trust server | |
mkdir ~/.ssh | |
ssh-keyscan ${ZOOMIN_SFTP_SERVER} >> ~/.ssh/known_hosts | |
# Prepare key | |
echo "${{ secrets.ZOOMIN_KEY }}" | base64 -d > zoomin_key | |
chmod 600 zoomin_key | |
# Upload to Zoomin | |
sftp -v -i zoomin_key nordic@${ZOOMIN_SFTP_SERVER} <<EOF | |
cd /nordic-be-dev.zoominsoftware.io/sphinx-html/incoming | |
put ${{ env.ZIP_FILENAME }} | |
quit | |
EOF |