Update logo attributes in bro-config.js #9
This file contains hidden or 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: Deploy Static Docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| name: Deploy `/tools` via SCP | |
| runs-on: ubuntu-22.04 | |
| env: | |
| SSH_PRIVATE_KEY: ${{ secrets.SSH_DEPLOY_KEY }} | |
| SSH_HOST: ${{ secrets.SSH_HOST }} | |
| SSH_USER: ${{ secrets.SSH_USER }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup SSH key | |
| run: | | |
| mkdir -p ~/.ssh | |
| echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa | |
| chmod 600 ~/.ssh/id_rsa | |
| ssh-keyscan -H "$SSH_HOST" >> ~/.ssh/known_hosts | |
| - name: Copy `.` via rsync | |
| run: | | |
| rsync -avz \ | |
| --partial \ | |
| --delete \ | |
| --exclude='.git/' \ | |
| --exclude='.github/' \ | |
| --exclude='.gitignore' \ | |
| --exclude='.gitattributes' \ | |
| --exclude='.DS_Store' \ | |
| --exclude='css/' \ | |
| --exclude='img/' \ | |
| --exclude='README.md/' \ | |
| -e "ssh -i ~/.ssh/id_rsa" \ | |
| . \ | |
| "${SSH_USER}@${SSH_HOST}:${{ secrets.SSH_TARGET_DIR_DEV }}/" |