Setup ssh key before other setup.
Build and Deploy Documentation Site / build-and-deploy (push) Failing after 15s
Details
Build and Deploy Documentation Site / build-and-deploy (push) Failing after 15s
Details
This commit is contained in:
parent
d7e904590f
commit
d0d7f5425c
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue