Skip to content

build(deps): Bump the github-actions group across 1 directory with 7 updates #16293

build(deps): Bump the github-actions group across 1 directory with 7 updates

build(deps): Bump the github-actions group across 1 directory with 7 updates #16293

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: MIT
name: "Pull Request Docs Check"
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
appstore_docs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.12'
- name: Install poetry
run: pip install poetry==1.8.2
- name: Install dependencies
run: poetry install --with docs
- name: Build docs
run: make docs
- name: Pack the results in local tar file
shell: bash
run: tar czf /tmp/documentation.tar.gz -C docs/_build/html .
- name: Upload static documentation
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: Appstore docs.zip
path: "/tmp/documentation.tar.gz"