-
Notifications
You must be signed in to change notification settings - Fork 1
28 lines (23 loc) · 1011 Bytes
/
publish_doc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Build and publish documentation
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ssh-key: ${{ secrets.KEY }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install SSH Key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.KEY }}
known_hosts: |
|1|8lWcwvLPhEtnTSizMx0d5UUNYC0=|Alh4AroxQB+J8NEPc3h8pJpc0pI= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=
|1|top6r/hT6ING6N4c3QFIwasTojI=|DEWKT8Q/3R7mL+8rvqND1z6NEQs= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg=
- name: Build with Gradle
run: ./gradlew mkdocsPublish