Skip to content

How to connect scope and headphones #41

How to connect scope and headphones

How to connect scope and headphones #41

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
test_and_maybe_deploy:
runs-on: ubuntu-20.04
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 'latest'
- name: Build
run: mdbook build
- name: Test
run: mdbook test
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
# Only deploy on a push to master, not on a pull request.
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'ccwinch/live-streaming-tech-notes'