Skip to content

Attempt to canonicalize enum constants #142

Attempt to canonicalize enum constants

Attempt to canonicalize enum constants #142

Workflow file for this run

name: build
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- 'main'
tags-ignore:
- '**'
env:
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- run: ./gradlew build :burst:dokkaHtml
- run: ./gradlew publish
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'cashapp/burst' }}
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
- name: Deploy docs to website
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'cashapp/burst' }}
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: site
FOLDER: burst/build/dokka/html
TARGET_FOLDER: docs/latest/
CLEAN: true