this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› Fix directories for deployment of crate docs

+5 -2
+5 -2
.github/workflows/docs.yml
··· 27 27 - uses: actions-rs/toolchain@v1 28 28 with: { toolchain: stable } 29 29 - uses: actions-rs/cargo@v1 30 - with: { command: doc, args: "--no-deps --target-dir docs" } 30 + with: { command: doc, args: --no-deps } 31 + - name: make / redirect to /shapemaker/index.html 32 + run: | 33 + echo '<meta http-equiv="refresh" content="0; url=shapemaker/index.html">' > target/doc/index.html 31 34 - name: Deploy with gh-pages 32 35 uses: peaceiris/actions-gh-pages@v3 33 36 with: 34 37 keep_files: true 35 - publish_dir: docs 38 + publish_dir: target/doc 36 39 github_token: "${{ secrets.GITHUB_TOKEN }}"