blob: 5930439bdb28e2a11e02825e699ef7bf71aa316d (
plain) (
blame)
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
|
# SPDX-FileCopyrightText: 2020 Linus Jahn <lnj@kaidan.im>
#
# SPDX-License-Identifier: CC0-1.0
---
name: push-docs
on:
push:
branches:
- master
jobs:
push-doc:
runs-on: ubuntu-latest
env:
PUSH_KEY_REPO_DOC_QXMPP_ORG: ${{ secrets.PUSH_KEY_REPO_DOC_QXMPP_ORG }}
CONFIG: full
steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v2
- name: Install extra packages
run: tests/travis/install-build-depends
- name: Build documentation
run: tests/travis/push-documentation
|