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 1abdc04 commit ad00494Copy full SHA for ad00494
.github/workflows/docs.yml
@@ -104,20 +104,27 @@ jobs:
104
deploy:
105
needs: [test]
106
runs-on: ubuntu-latest
107
+ permissions:
108
+ contents: write
109
# todo: deploy if new tag/release
110
if: |
111
github.repository == 'artivis/manif' &&
112
github.event_name == 'push' &&
113
github.ref == 'refs/heads/devel'
114
steps:
115
+ - name: Checkout
116
+ uses: actions/checkout@v4
117
+ with:
118
+ ref: gh-pages
119
+
120
- name: Download artifacts
121
uses: actions/download-artifact@v4
122
with:
123
name: doc
- path: doc
124
+ path: docs_build
125
126
- name: Deploy
127
uses: JamesIves/github-pages-deploy-action@v4
128
129
branch: gh-pages
- folder: doc
130
+ folder: docs_build
0 commit comments