From 2829ba2e930fbdfe1e14a1828e5186e65a8f9ea7 Mon Sep 17 00:00:00 2001 From: Bjarne Eberhardt Date: Wed, 8 May 2024 11:39:18 +1200 Subject: [PATCH] Switch GitHub Pages deployment --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b06c69..3163808 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,8 +108,10 @@ jobs: - name: Build Dokka Docs with Gradle run: ./gradlew dokkaHtml - - name: Deploy Docs to GitHub Pages - uses: JamesIves/github-pages-deploy-action@4 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 with: - branch: gh-pages - folder: build/dokka/html + path: 'build/dokka/html' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4