Skip to content

Commit 85606ad

Browse files
Attempt to fix docs site deployment (#2160)
## Motivation for the change, related issues This PR attempts to fix the following error: Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ ## Implementation details - We update actions/upload-pages-artifact from v1 to v3. - The v1 version uses actions/upload-artifact@v3. - The v3 version uses actions/upload-artifact@v4, which is the latest major version. ## Testing Instructions (or ideally a Blueprint) - CI Docs site deployment is already broken. Let's go ahead and merge this and see how doc site deployment runs on trunk.
1 parent 3ba698f commit 85606ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
submodules: true
191191
- uses: ./.github/actions/prepare-playground
192192
- run: npm run build:docs
193-
- uses: actions/upload-pages-artifact@v1
193+
- uses: actions/upload-pages-artifact@v3
194194
with: { path: dist/docs/build }
195195
- name: Deploy to GitHub Pages
196196
id: deployment

0 commit comments

Comments
 (0)