Setup ssh key before other setup.
Build and Deploy Documentation Site / build-and-deploy (push) Failing after 15s Details

This commit is contained in:
Andrew Lalis 2026-04-01 18:44:47 -04:00
parent d7e904590f
commit d0d7f5425c
1 changed files with 5 additions and 5 deletions

View File

@ -8,6 +8,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.DEPLOY_KEY }}
known_hosts: ${{ secrets.SSH_HOST }}
- uses: dlang-community/setup-dlang@v2 - uses: dlang-community/setup-dlang@v2
with: with:
compiler: ldc-latest compiler: ldc-latest
@ -23,11 +28,6 @@ jobs:
pip install mkdocs pip install mkdocs
pip install mkdocs-material pip install mkdocs-material
mkdocs build mkdocs build
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.DEPLOY_KEY }}
known_hosts: ${{ secrets.SSH_HOST }}
- name: Setup rsync - name: Setup rsync
uses: GuillaumeFalourd/setup-rsync@v1.2 uses: GuillaumeFalourd/setup-rsync@v1.2
- name: Upload static web content - name: Upload static web content