From 617eba934aeb610b41d1f0ae4bbc03fba5c3d69b Mon Sep 17 00:00:00 2001 From: Daniel Saidi Date: Thu, 14 Mar 2024 23:00:39 +0100 Subject: [PATCH] Adjust deploy scripts --- .github/workflows/build.yml | 2 +- .github/workflows/docc.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68c9443..6bf0db8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ on: branches: ["main"] env: - SCHEME: ApiKit + SCHEME: TagKit jobs: build: diff --git a/.github/workflows/docc.yml b/.github/workflows/docc.yml index f818642..aa13092 100644 --- a/.github/workflows/docc.yml +++ b/.github/workflows/docc.yml @@ -39,14 +39,14 @@ jobs: run: | swift package resolve; - xcodebuild docbuild -scheme ApiKit -derivedDataPath /tmp/docbuild -destination 'generic/platform=iOS'; + xcodebuild docbuild -scheme WebViewKit -derivedDataPath /tmp/docbuild -destination 'generic/platform=iOS'; $(xcrun --find docc) process-archive \ - transform-for-static-hosting /tmp/docbuild/Build/Products/Debug-iphoneos/ApiKit.doccarchive \ + transform-for-static-hosting /tmp/docbuild/Build/Products/Debug-iphoneos/WebViewKit.doccarchive \ --output-path docs \ - --hosting-base-path 'ApiKit'; + --hosting-base-path 'WebViewKit'; - echo "" > docs/index.html; + echo "" > docs/index.html; - name: Upload artifact uses: actions/upload-pages-artifact@v3