Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

471 publish generated docs as part of release build #519

Merged
merged 11 commits into from
Jul 24, 2024
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
with:
publish_snapshots: true
java_test_versions: '[11,17,21]'
pages: "./manual/target/generated-docs/"
secrets:
ossrh_username: ${{ secrets.OSSRH_USERNAME }}
ossrh_password: ${{ secrets.OSSRH_PASSWORD }}
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ on:
type: string
required: false
default: "target/checkout/cli/neo4jv?/target/*-distribution.zip"
yaseno2186 marked this conversation as resolved.
Show resolved Hide resolved
pages:
description: "Path expression for Pages to upload."
required: false
default: "./manual/target/generated-docs/"
deployCurrentDoc:
description: "Deploy the current documentation page."
type: boolean
required: false
default: false

jobs:
build:
Expand All @@ -35,7 +44,9 @@ jobs:
releaseVersion: ${{ github.event.inputs.releaseVersion }}
developmentVersion: ${{ github.event.inputs.developmentVersion }}
dryRun: ${{ github.event.inputs.dryRun }}
assets : ${{ github.event.inputs.assets }}
assets: ${{ github.event.inputs.assets }}
pages: ${{ github.event.inputs.pages }}
deployCurrentDoc: ${{ github.event.inputs.deployCurrentDoc }}
secrets:
ossrh_username: ${{ secrets.OSSRH_USERNAME }}
ossrh_password: ${{ secrets.OSSRH_PASSWORD }}
Expand Down
Loading