Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

DateUtils.parseVTimeZone: return null instead of throwing a RuntimeEx… #174

DateUtils.parseVTimeZone: return null instead of throwing a RuntimeEx…

DateUtils.parseVTimeZone: return null instead of throwing a RuntimeEx… #174

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