Skip to content

[Events] Adapt DURATION according to all-day flag before inserting … #79

[Events] Adapt DURATION according to all-day flag before inserting …

[Events] Adapt DURATION according to all-day flag before inserting … #79

Workflow file for this run

name: Build 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@v5
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 21
- uses: gradle/actions/setup-gradle@v5
- name: Build KDoc
run: ./gradlew --build-cache --configuration-cache dokkaGenerate
- uses: actions/upload-pages-artifact@v4
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