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 f739d81 commit 40636dfCopy full SHA for 40636df
.github/workflows/main.yml
@@ -41,9 +41,14 @@ jobs:
41
run: |
42
task build
43
44
- - name: Deploy to GitHub Pages
45
- if: github.ref == 'refs/heads/main'
46
- uses: peaceiris/actions-gh-pages@v3
+ - name: Create documentation archive
+ run: |
+ tar -czvf csdocs.tar.gz -C site .
47
+
48
+ - name: Upload documentation as artifact
49
+ uses: actions/upload-artifact@v3
50
with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./site
51
+ name: CSDocs
52
+ path: ./csdocs.tar.gz
53
+ retention-days: 14
54
+ if-no-files-found: error
0 commit comments