aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2021-09-17 23:44:21 +0300
committerIvan Komissarov <ABBAPOH@gmail.com>2021-09-20 10:13:40 +0000
commit2f399f57bbfbfe2f97903eb40ff7c14d8098a470 (patch)
tree097d4a8f53286425b880ea1bbec4e6524a1e2688 /.github/workflows/main.yml
parent19090f5ff1681503096e8797159e773600692903 (diff)
GitHub actions: add doc job
This job monitors only changes in documentation files and uploads generated html files as a resulting artifact. Also, ignore changes in documentation files when running tests - this is more environment-friendly and saves a lot of time. Change-Id: I807a5a246d8b9527ada2e9e5cd23234b9278b1b0 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 6f0cbdb33..6f148c0ad 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,6 +1,10 @@
name: Build and test Qbs
-on: [push]
+on:
+ push:
+ paths-ignore:
+ - 'changelogs/**'
+ - 'doc/**'
jobs:
build-linux: