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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ name: CI
on:
push:
branches:
- master
yaseno2186 marked this conversation as resolved.
Show resolved Hide resolved
- main
tags-ignore:
- "*"
pull_request:
branches:
- master
- main
workflow_dispatch: {}

concurrency:
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,16 @@ on:
description: "Path expression for Assets to upload."
type: string
required: false
default: "target/checkout/cli/neo4jv?/target/*-distribution.zip"
yaseno2186 marked this conversation as resolved.
Show resolved Hide resolved
default: ""
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