We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af643dd commit 00496d6Copy full SHA for 00496d6
.github/workflows/ci_docs.yml
@@ -151,6 +151,12 @@ jobs:
151
run: cp -v doc/_build/pygmt-docs.zip doc/_build/pygmt-docs.pdf doc/_build/html/
152
if: github.event_name == 'push' && matrix.os == 'ubuntu-latest'
153
154
+ - name: Upload the HTML ZIP archive and PDF as release assets
155
+ run: gh release upload ${{ github.ref_name }} doc/_build/pygmt-docs.zip doc/_build/pygmt-docs.pdf
156
+ if: github.event_name == 'release' && matrix.os == 'ubuntu-latest'
157
+ env:
158
+ GH_TOKEN: ${{ github.token }}
159
+
160
- name: Checkout the gh-pages branch
161
uses: actions/[email protected]
162
with:
0 commit comments