1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 20:51:06 +01:00

ci: remove upload doc job

This commit is contained in:
Rob Ede 2024-10-01 04:38:34 +01:00
parent af00dada5c
commit 83e896a6e5
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 1 additions and 37 deletions

View File

@ -1,4 +1,4 @@
name: CI (master only)
name: CI (post-merge)
on:
push:

View File

@ -1,36 +0,0 @@
name: Upload documentation
on:
push: { branches: [master] }
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1.10.0
with: { toolchain: nightly }
- name: Build Docs
run: cargo doc --workspace --all-features --no-deps
- name: Tweak HTML
run: echo '<meta http-equiv="refresh" content="0;url=actix_server/index.html">' > target/doc/index.html
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.6.4
with:
folder: target/doc
single-commit: true