Skip to content

Commit

Permalink
Release 4.26.0-RC1 Take 2 (#2855)
Browse files Browse the repository at this point in the history
* Add workflow_call to deploy_docs workflow to be called from another workflow

* Setup jbang to call revapi clear justifications
  • Loading branch information
ozangunalp authored Dec 16, 2024
1 parent 7fe01dc commit 4d54cb9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ release:
previous-version: 4.25.0
current-version: 4.26.0-RC1
next-version: 999-SNAPSHOT

12 changes: 12 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ jobs:
ref: ${{ github.ref }}
token: ${{steps.app-token.outputs.token}}

- name: Java setup
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven

- name: Tools setup
run: |
curl -s "https://get.sdkman.io" | bash
source ~/.sdkman/bin/sdkman-init.sh && sdk install jbang
- name: Get GitHub App User ID
id: get-user-id
run: echo "user-id=$(gh api "/users/${{ steps.app-token.outputs.app-slug }}[bot]" --jq .id)" >> "$GITHUB_OUTPUT"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/push-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ run-name: Deploy ${{github.event.inputs.version || github.ref_name}} Docs

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

jobs:
deploy-docs:
Expand Down

0 comments on commit 4d54cb9

Please sign in to comment.