Skip to content

Commit

Permalink
test WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrasil committed Jan 14, 2025
1 parent 8b630ec commit 0eb473a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ on:

jobs:
reusable-merge-workflow:
uses: pentaho/actions-common/.github/workflows/merge.yml@stable
uses: pentaho/actions-common/.github/workflows/merge.yml@semver
with:
base_version: "10.2.0.1-255"
slack_channels: ""
sonar_project_key: "pentaho-generic-file-system"
modules_to_build: ${{ inputs.modules_to_build }}
run_release_candidate: true
add_github_run_number: false
use_semver_release_candidate: true
secrets: inherit
22 changes: 16 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,29 @@ name: pentaho-generic-file-system release workflow
on:
workflow_dispatch:
inputs:
release_version:
required: true
description: "The version to be released"
type: string
dry_run:
type: boolean
default: true
description: "Dry run. No real changes should occur."

jobs:
reusable-merge-workflow:
uses: pentaho/actions-common/.github/workflows/merge.yml@semver
with:
base_version: "10.2.0.1-255"
slack_channels: ""
sonar_project_key: "pentaho-generic-file-system"
modules_to_build: ${{ inputs.modules_to_build }}
run_release_candidate: true
run_snapshot: false
add_github_run_number: false
use_semver_release_candidate: false
secrets: inherit

release:
uses: pentaho/actions-common/.github/workflows/release.yml@stable
needs: [reusable-merge-workflow]
uses: pentaho/actions-common/.github/workflows/release.yml@semver
with:
release_version: ${{ inputs.release_version }}
release_version: ${{ needs.reusable-merge-workflow.outputs.current-version }}
dry_run: ${{ inputs.dry_run }}
secrets: inherit

0 comments on commit 0eb473a

Please sign in to comment.