Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy to GitHub Pages

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: .
- id: deployment
uses: actions/deploy-pages@v4
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ Two versions are included:
| `REC.html` | Full | You want overlays, audio meters, device selection, recordings list, and Save to Disk |
| `REC-tiny.html` | ~16 KB | You want a minimal, dependency-free drop-in with no extras |

## Pages

Hosted on GitHub Pages, automatically deployed on every push to `main`:

- **Full:** https://infinityhack3r.github.io/REC/REC.html
- **Tiny:** https://infinityhack3r.github.io/REC/REC-tiny.html

---

## REC-tiny
Expand Down