4 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
97d1019b69 added right path for cargo doc push
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 5s
Rust Cross-Platform Build / Set Tag Name (push) Successful in 4s
Rust Cross-Platform Build / Run Tests (push) Successful in 1m5s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Failing after 2m50s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Failing after 3m31s
Rust Cross-Platform Build / Build and Push Docker Image (push) Has been skipped
Rust Cross-Platform Build / Create Tag (push) Has been skipped
Rust Cross-Platform Build / Workflow Summary (push) Successful in 1s
2025-10-01 21:49:02 +02:00
e30ceb75d9 added cargo doc push
Some checks failed
Rust Cross-Platform Build / Detect Rust Project (push) Successful in 4s
Rust Cross-Platform Build / Set Tag Name (push) Successful in 4s
Rust Cross-Platform Build / Run Tests (push) Successful in 1m6s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Failing after 3m2s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Failing after 3m39s
Rust Cross-Platform Build / Build and Push Docker Image (push) Has been skipped
Rust Cross-Platform Build / Create Tag (push) Has been skipped
Rust Cross-Platform Build / Workflow Summary (push) Successful in 1s
2025-10-01 19:49:48 +02:00

View File

@@ -134,7 +134,7 @@ jobs:
# working-directory: ${{ needs.detect-project.outputs.project-dir }} # working-directory: ${{ needs.detect-project.outputs.project-dir }}
# run: cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2020-0159 # run: cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2020-0159
build: build:
name: Build (${{ matrix.target }}) name: Build (${{ matrix.target }})
needs: [detect-project, test] needs: [detect-project, test]
if: ${{ !failure() && !cancelled() }} if: ${{ !failure() && !cancelled() }}
@@ -187,7 +187,18 @@ jobs:
with: with:
name: ${{ matrix.artifact-name }} name: ${{ matrix.artifact-name }}
path: | 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
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ needs.detect-project.outputs.project-dir }}/target/doc
publish_branch: gh-pages
docker-build: docker-build:
name: Build and Push Docker Image name: Build and Push Docker Image