-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4b97aa
commit 6d504cc
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
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" | ||
- name: Install VHS | ||
run: go install github.com/charmbracelet/vhs@latest | ||
|
||
- name: Generate and publish a new demo | ||
run: vhs --publish demo.tape |