1
0
Fork 0
forked from wry/wry

Merge pull request #363 from mahkoh/jorth/remove-docs-workflow

ci: remove docs workflow
This commit is contained in:
mahkoh 2025-02-07 12:57:25 +01:00 committed by GitHub
commit 5f56b7fd09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,46 +0,0 @@
name: docs
on:
push:
branches: [ master ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Show env
run: |
uname -a
ldd --version
- name: Install
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
rustup toolchain install nightly --allow-downgrade -c rustfmt
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Build
run: |
cd jay-config
cargo doc
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: './target/doc'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1