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

Tom Stellard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 13 15:33:36 PDT 2023


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 make sure the docs are always available and can be manually uploaded
if a later step fails.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D145996

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/build-docs.sh -srcdir llvm
         ./llvm/utils/release/github-upload-release.py --token ${{ github.token }} --release ${{ steps.validate-tag.outputs.release-version }} upload --files *doxygen*.tar.xz
 
+    - name: Create Release Notes Artifact
+      uses: actions/download-artifact at v1
+      with:
+        name: release-notes
+        path: docs-build/html-export/
+
     - name: Clone www-releases
       if: ${{ !contains(steps.validate-tag.outputs.release-version, 'rc') }}
       uses: actions/checkout at v3


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145996.504870.patch
Type: text/x-patch
Size: 755 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230313/c4d24c2c/attachment.bin>


More information about the llvm-commits mailing list