[PATCH] D131648: workflows/release-tasks: Upload release notes as an artifact

Tom Stellard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 10 22:23:13 PDT 2022


tstellar created this revision.
tstellar added a reviewer: thieta.
Herald added a project: All.
tstellar requested review of this revision.
Herald added a project: LLVM.

This way the documentation can be manually uploaded if the push
to www-releases fails or if we are building for a release candidate.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D131648

Files:
  .github/workflows/release-tasks.yml


Index: .github/workflows/release-tasks.yml
===================================================================
--- .github/workflows/release-tasks.yml
+++ .github/workflows/release-tasks.yml
@@ -44,6 +44,12 @@
         ./llvm/utils/release/github-upload-release.py --token ${{ github.token }} --release ${{ steps.validate-tag.outputs.release-version }} upload --files *doxygen*.tar.xz
 
 
+    - name: Save generated html
+      uses: actions/upload-artifact at v3
+      with:
+        name: html-docs
+        path: ./docs-build/html-export/
+
     - name: Save generated html
       uses: actions/upload-artifact at v3
       with:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131648.451725.patch
Type: text/x-patch
Size: 629 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220811/3d785c7d/attachment.bin>


More information about the llvm-commits mailing list