Skip to content

Allow configuration of sources when determining licenses #951

Allow configuration of sources when determining licenses

Allow configuration of sources when determining licenses #951

Workflow file for this run

name: build
on:
pull_request: {}
workflow_dispatch: {}
push:
branches:
- 'trunk'
tags-ignore:
- '**'
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: gradle/actions/setup-gradle@v4
- run: ./gradlew build dokkaHtml
- run: ./gradlew publish
if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'cashapp/licensee' && matrix.os == 'ubuntu-latest' }}
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/trunk' && github.repository == 'cashapp/licensee' && matrix.os == 'ubuntu-latest' }}
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: site
FOLDER: build/dokka/html
TARGET_FOLDER: docs/latest/
CLEAN: true