[llvm] workflows: Fix release documentation upload (PR #91093)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Sat May 4 14:48:05 PDT 2024
https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/91093
None
>From 442f05dcf180658de74c23c59d527f449d5b5dee Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sat, 4 May 2024 21:45:58 +0000
Subject: [PATCH] workflows: Fix release documentation upload
---
.github/workflows/release-documentation.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/release-documentation.yml b/.github/workflows/release-documentation.yml
index 64572906988bab..6cfc7e0d6f55a7 100644
--- a/.github/workflows/release-documentation.yml
+++ b/.github/workflows/release-documentation.yml
@@ -78,9 +78,9 @@ jobs:
env:
WWW_RELEASES_TOKEN: ${{ secrets.WWW_RELEASES_TOKEN }}
run: |
- mkdir -p ../www-releases/${{ inputs.release-version }}
- mv ./docs-build/html-export/* ../www-releases/${{ inputs.release-version }}
- cd ../www-releases
+ mkdir -p www-releases/${{ inputs.release-version }}
+ mv ./docs-build/html-export/* www-releases/${{ inputs.release-version }}
+ cd www-releases
git add ${{ inputs.release-version }}
git config user.email "llvmbot at llvm.org"
git config user.name "llvmbot"
More information about the llvm-commits
mailing list