We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f2d0c commit a61fe4aCopy full SHA for a61fe4a
.github/workflows/haddock-pages.yml
@@ -41,11 +41,16 @@ jobs:
41
run: mv $(find haddock_build -wholename '*doc/html/circular-enum' | head -n 1) $HADDOCK_DIR
42
43
- name: Store generated API docs
44
- uses: actions/upload-pages-artifact@v3
+ uses: actions/upload-artifact@v4
45
with:
46
name: Haddock API docs
47
path: ${{ env.HADDOCK_DIR }}
48
49
+ - name: Prepare API docs for pages deployment
50
+ uses: actions/upload-pages-artifact@v3
51
+ with:
52
+ path: ${{ env.HADDOCK_DIR }}
53
+
54
deploy:
55
needs: haddock
56
if: github.ref == 'refs/heads/main'
0 commit comments