Demo #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Demo | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
generate: | |
runs-on: ubuntu-24.04 | |
env: | |
CXX: g++-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dependencies | |
uses: ./.github/actions/setup-ubuntu-deps | |
- name: Print versions | |
run: make versions | |
- name: Build Poac | |
run: make RELEASE=1 -j4 | |
- name: Install Poac | |
run: | | |
make PREFIX="$HOME/.local" install | |
echo "$HOME/.local/bin" >> "$GITHUB_PATH" | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 'stable' | |
- name: Install VHS | |
run: go install github.com/charmbracelet/vhs@latest | |
- name: Generate and publish a new demo | |
run: vhs --publish demo.tape |