Skip to content

Commit 3bcb384

Browse files
edburnsCopilot
andcommitted
Fix empty site.version — use inputs.version directly
The DEPLOY_VERSION env var was removed with the old validation step. Use inputs.version directly since it's already the bare version string. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 203b707 commit 3bcb384

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/deploy-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
- name: Build documentation site
8585
run: |
8686
echo "Building site for version ${{ env.DEPLOY_VERSION }}"
87-
mvn site -Dsite.version=${{ env.DEPLOY_VERSION }} -B
87+
mvn site -Dsite.version=${{ inputs.version }} -B
8888
8989
# 6. Checkout gh-pages branch from this (standalone) repo
9090
- name: Checkout gh-pages branch

0 commit comments

Comments
 (0)