mirror of
https://github.com/tauri-apps/tauri.git
synced 2025-01-01 23:42:33 +03:00
chore: update rust docs on release (#739)
* chore: update rust docs on release * update commit message also working directory doesn't apply with `uses`
This commit is contained in:
parent
161112ed41
commit
d109c066c2
52
.github/workflows/update-docs.yml
vendored
Normal file
52
.github/workflows/update-docs.yml
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
name: update-docs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- '**/package.json'
|
||||
- '.github/workflows/**'
|
||||
|
||||
jobs:
|
||||
update-docs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout tauri
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: tauri
|
||||
- name: checkout tauri-docs
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: tauri-apps/tauri-docs
|
||||
path: tauri-docs
|
||||
- name: install webkit2gtk
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y webkit2gtk-4.0
|
||||
- name: generate rust docs
|
||||
working-directory: tauri
|
||||
run: cargo doc --no-deps
|
||||
- name: run rustdocusaurus
|
||||
uses: tauri-apps/rustdocusaurus/github-action@master
|
||||
with:
|
||||
originPath: ./tauri/target/doc/
|
||||
targetPath: ./tauri-docs/docs/api/rust/
|
||||
sidebarPath: ./tauri-docs/sidebars.json
|
||||
linksRoot: /docs/api/rust/
|
||||
cratesToProcess: "tauri,tauri_api,tauri_utils"
|
||||
- name: git config
|
||||
run: |
|
||||
git config --global user.name "${{ github.event.pusher.name }}"
|
||||
git config --global user.email "${{ github.event.pusher.email }}"
|
||||
- name: create pull request for updated docs
|
||||
uses: tauri-apps/create-pull-request@v2.8.0
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
commit-message: "chore(docs): Update Rust docs"
|
||||
branch: docs/release
|
||||
title: Update Docs
|
||||
labels: "new release"
|
||||
body: |
|
||||
These are the updated docs from the most recent release.
|
Loading…
Reference in New Issue
Block a user