We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b478c99 commit a28e46aCopy full SHA for a28e46a
.github/workflows/docs-build.yml
@@ -140,14 +140,12 @@ jobs:
140
name: generated-docs-html
141
path: ".build/${{ github.ref_name }}"
142
143
- - run: find .build
144
-
145
- name: Archive the built documentation
146
run: |
147
- tar -czvf .build/docs.tar.gz .build/${{ github.ref_name }}
+ cd .build/${{ github.ref_name }} && tar -czvf ../documentation.tar.gz *
148
149
- name: Upload the documentation as a release asset
150
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191
151
with:
152
- files: .build/docs.tar.gz
+ files: .build/documentation.tar.gz
153
tag_name: ${{ github.ref_name }}
0 commit comments