Skip to content

Commit 7b07187

Browse files
authoredAug 24, 2023
Merge branch 'Kotlin:master' into nullable-without-nulls
2 parents af06594 + 6bb6cf7 commit 7b07187

File tree

169 files changed

+13818
-1870
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+13818
-1870
lines changed
 

‎.github/workflows/main.yml

+24-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: Build docs
22

33
on:
4+
# Specify to run a workflow manually from the Actions tab on GitHub.
45
workflow_dispatch:
56

7+
# Gives the workflow permissions to clone the repo and create a page deployment
68
permissions:
79
id-token: write
810
pages: write
@@ -20,15 +22,31 @@ env:
2022
jobs:
2123
build-job:
2224
runs-on: ubuntu-latest
25+
container: registry.jetbrains.team/p/writerside/builder/writerside-builder:2.1.1481-p3872-df
26+
outputs:
27+
artifact: ${{ steps.generate-artifact.outputs.artifact }}
2328
steps:
2429
- name: Checkout repository
2530
uses: actions/checkout@v3
26-
- name: Build Writerside docs using Docker
27-
uses: ./.github/writerside-build
28-
- name: Upload artifact
31+
- name: Prepare for build
32+
run: |
33+
apt-get update
34+
apt-get install -y zip
35+
mkdir -p artifacts
36+
- name: Build docs and include sitemap.xml
37+
run: |
38+
export DISPLAY=:99
39+
Xvfb :99 &
40+
/opt/builder/bin/idea.sh helpbuilderinspect -source-dir . -product $PRODUCT --runner github -output-dir artifacts/ || true
41+
test -e artifacts/$ARTIFACT && echo $ARTIFACT exists
42+
cp docs/StardustDocs/sitemap.xml artifacts/sitemap.xml
43+
cd artifacts
44+
zip -r $ARTIFACT sitemap.xml
45+
working-directory: ${{ github.workspace }}
46+
- name: Upload modified documentation artifact
2947
uses: actions/upload-artifact@v3
3048
with:
31-
name: artifact
49+
name: help
3250
path: artifacts/${{ env.ARTIFACT }}
3351
retention-days: 7
3452
- name: Upload algolia-indexes
@@ -42,13 +60,14 @@ jobs:
4260
environment:
4361
name: github-pages
4462
url: ${{ steps.deployment.outputs.page_url }}
63+
# Requires the build-job results
4564
needs: build-job
4665
runs-on: ubuntu-latest
4766
steps:
4867
- name: Download artifact
4968
uses: actions/download-artifact@v3
5069
with:
51-
name: artifact
70+
name: help
5271
- name: Unzip artifact
5372
uses: montudor/action-zip@v1
5473
with:

‎.github/writerside-build/Dockerfile

-10
This file was deleted.

0 commit comments

Comments
 (0)