From 1e6e00b0c02986677140e7bc3c29f8165567d624 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Mon, 1 Aug 2022 15:34:22 +0200 Subject: [PATCH 1/2] ci(integration-testing): split integration test off from regular tests --- .github/workflows/documentation.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 7fb7fdf16..b4cc3ec56 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -56,15 +56,17 @@ jobs: - name: Prepare the doc hierarchy shell: bash run: | - mkdir -p target/docs/bindings/matrix-sdk-crypto-nodejs/ - mkdir -p target/docs/bindings/matrix-sdk-crypto-js/ - mv -f bindings/matrix-sdk-crypto-nodejs/docs/* target/docs/bindings/matrix-sdk-crypto-nodejs/ - mv -f bindings/matrix-sdk-crypto-js/docs/* target/docs/bindings/matrix-sdk-crypto-js/ + mkdir -p doc + mkdir -p doc/bindings/matrix-sdk-crypto-nodejs/ + mkdir -p doc/bindings/matrix-sdk-crypto-js/ + mv target/doc/* doc/ + mv bindings/matrix-sdk-crypto-nodejs/docs/* doc/bindings/matrix-sdk-crypto-nodejs/ + mv bindings/matrix-sdk-crypto-js/docs/* doc/bindings/matrix-sdk-crypto-js/ - name: Deploy documentation if: github.event_name == 'push' && github.ref == 'refs/heads/main' uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./target/doc/ + publish_dir: ./doc/ force_orphan: true From 14429af51172c39b9d255f42cb9dbf23de63dc47 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Mon, 1 Aug 2022 22:19:46 +0200 Subject: [PATCH 2/2] Update .github/workflows/documentation.yml Co-authored-by: Jonas Platte --- .github/workflows/documentation.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index b4cc3ec56..b0da847cd 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -56,7 +56,6 @@ jobs: - name: Prepare the doc hierarchy shell: bash run: | - mkdir -p doc mkdir -p doc/bindings/matrix-sdk-crypto-nodejs/ mkdir -p doc/bindings/matrix-sdk-crypto-js/ mv target/doc/* doc/