[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 27 23:18:44 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc52e947f9ca2: workflows/release-tasks: Upload release notes as an artifact (authored by tstellar).
Changed prior to commit:
https://reviews.llvm.org/D145996?vs=504870&id=508898#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145996/new/
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
@@ -48,6 +48,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.508898.patch
Type: text/x-patch
Size: 775 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230328/3ebb2235/attachment.bin>
More information about the llvm-commits
mailing list