diff options
| author | Linus Jahn <lnj@kaidan.im> | 2020-04-01 14:51:18 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2020-04-01 15:26:45 +0200 |
| commit | 4a09a18ff1d786c5fdea7b1992f6937fa7cbc833 (patch) | |
| tree | 487afb6da9699b01a034f5ce4dede6ffde372025 /.github/workflows | |
| parent | aac82e6884a0db5345d3f43b1916f725349b2e4c (diff) | |
| download | qxmpp-4a09a18ff1d786c5fdea7b1992f6937fa7cbc833.tar.gz | |
actions: Push documentation to doc.qxmpp.org
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/push-docs.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/push-docs.yml b/.github/workflows/push-docs.yml new file mode 100644 index 00000000..0ab8293e --- /dev/null +++ b/.github/workflows/push-docs.yml @@ -0,0 +1,22 @@ +--- +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 |
