replaced documentation post with seperate step
All checks were successful
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 1m5s
Rust Cross-Platform Build / Build (x86_64-unknown-linux-gnu) (push) Successful in 3m47s
Rust Cross-Platform Build / Build (x86_64-pc-windows-gnu) (push) Successful in 4m20s
Rust Cross-Platform Build / Build and Push Docker Image (push) Successful in 2m4s
Rust Cross-Platform Build / Workflow Summary (push) Successful in 2s
Rust Cross-Platform Build / Create Tag (push) Successful in 5s

This commit is contained in:
2025-10-01 22:42:35 +02:00
parent d584e21fd9
commit 238ad87119

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,27 +187,11 @@ 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' || '' }}
documentation:
name: Build and Deploy Documentation
needs: [detect-project, test]
if: ${{ !failure() && !cancelled() && github.event_name == 'push' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Build documentation - name: Build documentation
working-directory: ${{ needs.detect-project.outputs.project-dir }} working-directory: ${{ needs.detect-project.outputs.project-dir }}
run: | run: cargo doc --no-deps
cargo doc --no-deps --all-features
# Create redirect index if needed
echo '<meta http-equiv="refresh" content="0; url=${{ needs.detect-project.outputs.project-name }}/index.html">' > target/doc/index.html
- name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3 uses: peaceiris/actions-gh-pages@v3
@@ -215,7 +199,6 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ needs.detect-project.outputs.project-dir }}/target/doc publish_dir: ${{ needs.detect-project.outputs.project-dir }}/target/doc
publish_branch: gh-pages publish_branch: gh-pages
force_orphan: true
docker-build: docker-build:
name: Build and Push Docker Image name: Build and Push Docker Image