Skip to content

Commit d615581

Browse files
committed
Merge branch '3.5.x'
Closes gh-48369
2 parents 64ea2fd + 99e121f commit d615581

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/build-and-deploy-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Run Deploy Docs Workflow
6161
env:
6262
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63-
run: gh workflow run deploy-docs.yml --repo ${{ github.repository }} -r docs-build -f build-refname=${{ github.ref_name }} -f build-version=${{ needs.build-and-deploy-snapshot.outputs.version }}
63+
run: gh workflow run deploy-docs.yml --repo ${{ github.repository }} -r docs-build -f build-sha=${{ github.sha }} -f build-refname=${{ github.ref_name }} -f build-version=${{ needs.build-and-deploy-snapshot.outputs.version }}
6464
verify:
6565
name: Verify
6666
needs: build-and-deploy-snapshot

.github/workflows/trigger-docs-build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ on:
55
paths: [ 'antora/*' ]
66
workflow_dispatch:
77
inputs:
8+
build-version:
9+
description: 'Version being build (e.g. 1.0.3-SNAPSHOT)'
10+
required: false
11+
build-sha:
12+
description: Enter the SHA to build (e.g. 82c97891569821a7f91a77ca074232e0b54ca7a5)
13+
required: false
814
build-refname:
915
description: 'Git refname to build (e.g., 1.0.x)'
1016
required: false
11-
build-version:
12-
description: 'Version being build (e.g. 1.0.3-SNAPSHOT)'
13-
required: false
17+
1418
permissions:
1519
contents: read
1620
jobs:
@@ -28,4 +32,4 @@ jobs:
2832
- name: Trigger Workflow
2933
env:
3034
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31-
run: gh workflow run deploy-docs.yml -r docs-build -f build-refname=${{ github.event.inputs.build-refname }} -f build-version=${{ github.event.inputs.build-version }}
35+
run: gh workflow run deploy-docs.yml -r docs-build -f build-refname=${{ github.event.inputs.build-refname }} -f build-sha=${{ github.event.inputs.build-sha }} -f build-version=${{ github.event.inputs.build-version }}

0 commit comments

Comments
 (0)