Skip to content

Improve recognition accuracy: mic auto-calibration + tuning, bump 0.3.28 #11

Improve recognition accuracy: mic auto-calibration + tuning, bump 0.3.28

Improve recognition accuracy: mic auto-calibration + tuning, bump 0.3.28 #11

Workflow file for this run

name: Pages
on:
push:
branches: [main]
paths:
- "site/**"
- "scripts/build-pages.sh"
- ".github/workflows/pages.yml"
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- name: Build deps (apt/yum repo tooling)
run: sudo apt-get update && sudo apt-get install -y apt-utils createrepo-c jq
- name: Assemble landing + signed package repos
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
run: bash scripts/build-pages.sh
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: public
- id: deployment
uses: actions/deploy-pages@v4