2 Commits

Author SHA1 Message Date
ac79a2e0b7 added right path for cargo doc push 2025-10-01 22:21:59 +02:00
1798c1270b added right path for cargo doc push 2025-10-01 22:21:44 +02:00

View File

@@ -134,7 +134,7 @@ jobs:
# working-directory: ${{ needs.detect-project.outputs.project-dir }}
# run: cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2020-0159
build:
build:
name: Build (${{ matrix.target }})
needs: [detect-project, test]
if: ${{ !failure() && !cancelled() }}
@@ -187,9 +187,10 @@ jobs:
with:
name: ${{ matrix.artifact-name }}
path: |
${{ needs.detect-project.outputs.project-dir }}/target/${{ matrix.target }}/release/${{ needs.detect-project.outputs.project-name }}${{ matrix.os == 'windows' && '.exe' || '' }}
${{ needs.detect-project.outputs.project-dir }}/target/${{ matrix.target }}/release/${{ needs.detect-project.outputs.project-name }}${{ matrix.os == 'windows' && '.exe' || '' }}"
- name: Build documentation
working-directory: ${{ needs.detect-project.outputs.project-dir }}
run: cargo doc --no-deps
- name: Deploy to GitHub Pages