Skip to content

BatchOperation: set yield point after every 500 operations (#188) #175

BatchOperation: set yield point after every 500 operations (#188)

BatchOperation: set yield point after every 500 operations (#188) #175

Workflow file for this run

name: Build and publish KDoc
on:
push:
branches: [main]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- uses: gradle/actions/setup-gradle@v4
- name: Build KDoc
run: ./gradlew --no-configuration-cache dokkaHtml
- uses: actions/upload-pages-artifact@v3
with:
path: lib/build/dokka/html
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4