Skip to content
Snippets Groups Projects
Unverified Commit 9a7deab7 authored by Yaroslav Lobankov's avatar Yaroslav Lobankov
Browse files

ci: prettify publish-module-api-doc.yml workflow

- Rename the workflow into `publish-module-api-doc` to be consistent
  with other workflow names.
- Refactor workflow triggers.
- Run the workflow only on push to the tarantool/tarantool repository
  or on pull request if the 'notest' label is not set.
- Simplify condition for publishing generated API documentation.

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci

(cherry picked from commit c9e0074d)
parent a6207837
No related branches found
No related tags found
No related merge requests found
name: Build and publish module API documentation
name: publish-module-api-doc
on:
push:
branches: [master]
branches:
- 'master'
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
concurrency:
......@@ -30,6 +30,14 @@ concurrency:
jobs:
build-api-doc:
runs-on: ubuntu-latest
# Run on push to the tarantool/tarantool repository or on pull request
# if the 'notest' label is not set.
if: github.repository == 'tarantool/tarantool' &&
( github.event_name != 'pull_request' ||
( github.event_name == 'pull_request' &&
!contains(github.event.pull_request.labels.*.name, 'notest') ) )
steps:
- name: Prepare checkout
uses: tarantool/actions/prepare-checkout@master
......@@ -52,9 +60,7 @@ jobs:
uses: JamesIves/github-pages-deploy-action@v4.4.0
with:
folder: doc/
if: github.repository == 'tarantool/tarantool' &&
github.ref == 'refs/heads/master' &&
github.event_name != 'pull_request'
if: github.ref == 'refs/heads/master'
- name: Send VK Teams message on failure
if: failure()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment