Skip to content

Commit de02f21

Browse files
authored
fix: broken deploy website pipeline (#59)
The workflow fails due to the following deploy 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 Signed-off-by: Balakrishna Avulapati <ba@bavulapati.com>
1 parent be361fe commit de02f21

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/website-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: website
22
on:
33
push:
4-
branches: [ "main" ]
4+
branches: ["main"]
55
workflow_dispatch:
66

77
permissions:
@@ -32,11 +32,11 @@ jobs:
3232
-DINCLUDEJS_DOCS:BOOL=ON
3333
- run: cmake --build ./build --config Release --target doxygen
3434
- name: Setup Pages
35-
uses: actions/configure-pages@v1
35+
uses: actions/configure-pages@v5
3636
- name: Upload artifact
37-
uses: actions/upload-pages-artifact@v1
37+
uses: actions/upload-pages-artifact@v3
3838
with:
3939
path: ./build/website
4040
- name: Deploy to GitHub Pages
4141
id: deployment
42-
uses: actions/deploy-pages@v2
42+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)