Skip to content

Commit

Permalink
Release 4.26.0-RC2 (#2859)
Browse files Browse the repository at this point in the history
* Fix push deploy docs

* Release 4.26.0-RC2
  • Loading branch information
ozangunalp authored Dec 17, 2024
1 parent ed1c731 commit 825633a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: SmallRye Reactive Messaging
release:
previous-version: 4.25.0
current-version: 4.26.0-RC1
current-version: 4.26.0-RC2
next-version: 999-SNAPSHOT
9 changes: 7 additions & 2 deletions .github/workflows/push-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ run-name: Deploy ${{github.event.inputs.version || github.ref_name}} Docs

on:
workflow_dispatch:
workflow_call:
inputs:
version:
description: 'Release version'
type: string
workflow_call:

jobs:
deploy-docs:
runs-on: ubuntu-latest
env:
RELEASE_VERSION: ${{ github.event.inputs.version }}

steps:
- name: Git checkout
Expand All @@ -34,5 +36,8 @@ jobs:
cache-dependency-path: documentation/Pipfile.lock
- name: Install pipenv
run: pip install pipenv
- name: Set Release Version
run: |
echo "RELEASE_VERSION=${RELEASE_VERSION:-"$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)"}" >> $GITHUB_ENV
- name: Perform the deploy docs
run: just build-ci deploy-docs ${{ github.event.inputs.version }}
run: just build-ci deploy-docs ${{ env.RELEASE_VERSION }}

0 comments on commit 825633a

Please sign in to comment.