mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-06 19:56:42 +01:00
relayer arranger view and extract button_2 and button_3 to top level
This commit is contained in:
parent
d1bb33dc41
commit
fe9d5a309e
43 changed files with 7158 additions and 276 deletions
46
plugin/vst/.github/workflows/docs.yml
vendored
Normal file
46
plugin/vst/.github/workflows/docs.yml
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
name: Docs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
persist-credentials: false
|
||||
fetch-depth: 0
|
||||
|
||||
# Installs the latest stable rust, and all components needed for the rest of the CI pipeline.
|
||||
- name: Set up CI environment
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
override: true
|
||||
|
||||
# Sanity check: make sure the release builds
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
|
||||
# Sanity check: make sure all tests in the release pass
|
||||
- name: Test
|
||||
run: cargo test --verbose
|
||||
|
||||
# Generate docs
|
||||
# TODO: what does the last line here do?
|
||||
- name: Generate docs
|
||||
env:
|
||||
GH_ENCRYPTED_TOKEN: ${{ secrets.GH_ENCRYPTED_TOKEN }}
|
||||
run: |
|
||||
cargo doc --all --no-deps
|
||||
echo '<meta http-equiv=refresh content=0;url=vst/index.html>' > target/doc/index.html
|
||||
|
||||
# Push docs to github pages (branch `gh-pages`)
|
||||
- name: Deploy
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: target/doc
|
||||
Loading…
Add table
Add a link
Reference in a new issue