aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2021-12-21 15:23:20 +0100
committerJay Berkenbilt <ejb@ql.org>2021-12-21 15:52:41 +0100
commit36916619f0b07b4412df5a96683579552dd96285 (patch)
tree29df82de9a033570826c2791f9b6457ac7b63bd5 /.github
parente058247bcfb132866dae5c873db7591bcc13db7e (diff)
downloadqpdf-36916619f0b07b4412df5a96683579552dd96285.tar.zst
Stop adding pre-built documentation to the source distribution
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 5543a7d8..2bc5d217 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -21,14 +21,13 @@ on:
jobs:
Prebuild:
# Run steps that are needed by the Windows build but are easier to
- # build on Linux. Although only the Windows builds need this,
- # other jobs depend on it to force it to run early.
+ # build on Linux. Also create the documentation distribution.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 'Run pre-build steps'
run: build-scripts/prebuild
- - name: 'Upload extra distribution files'
+ - name: 'Upload documentation for later build steps'
uses: actions/upload-artifact@v1
with:
name: doc
@@ -38,6 +37,11 @@ jobs:
with:
name: external-libs
path: external-libs-dist
+ - name: 'Upload doc distribution'
+ uses: actions/upload-artifact@v1
+ with:
+ name: distribution
+ path: distribution
Linux:
runs-on: ubuntu-latest
steps: