Merge branch '1.8' #12
This file contains 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
# SPDX-FileCopyrightText: 2020 Linus Jahn <[email protected]> | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
--- | |
name: push-docs | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
push-doc: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:stable | |
env: | |
PUSH_KEY_REPO_DOC_QXMPP_ORG: ${{ secrets.PUSH_KEY_REPO_DOC_QXMPP_ORG }} | |
CONFIG: full | |
steps: | |
- name: Install sudo | |
run: apt update && apt install -qq -y sudo curl | |
- uses: actions/checkout@v3 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
- name: Install extra packages | |
run: tests/travis/install-build-depends-debian | |
- name: Update XEP metadata | |
run: doc/doap-rendering/update-xeplist.sh | |
- name: Build documentation | |
run: tests/travis/push-documentation |