diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14d92a4..9142537 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -117,15 +117,6 @@ jobs: SIGN_KEY_PASS: ${{ secrets.GPG_SECRET_PASSPHRASE }} SIGN_KEY: ${{ secrets.GPG_SECRET_KEY }} - - name: Download Dokka CLI and Build HTML APIDocs - working-directory: . - run: ./scripts/dokka.sh - - name: Upload artifact - uses: actions/upload-artifact@v2 - with: - name: docs - path: target/apidocs - - name: Create GitHub Release uses: softprops/action-gh-release@v1 with: @@ -134,17 +125,3 @@ jobs: prerelease: false generate_release_notes: true - deploy-api-docs: - runs-on: ubuntu-latest - needs: [publish-publicly] - steps: - - uses: actions/download-artifact@v2 - with: - path: public - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - keep_files: true - publish_dir: ./public - full_commit_message: Publish documentation to GitHub pages