c7213ad2c3
See the release notes: https://github.com/bigbluebutton/bbb-presentation-video/releases/tag/4.0.0-rc.1 This version should be feature-complete for BigBlueButton 2.6 whiteboard video generation. I have updated the `bbb-presentation-video.placeholder.sh` script to download the prebuilt packages from the Github release rather than clone the source code. Work to automate handling of including this package in the builds automatically is still yet to be done.
12 lines
593 B
Bash
Executable File
12 lines
593 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
RELEASE=4.0.0-rc.1
|
|
cat <<MSG
|
|
This tool downloads prebuilt packages built on Github Actions
|
|
The corresponding source can be browsed at https://github.com/bigbluebutton/bbb-presentation-video/tree/${RELEASE}
|
|
Build logs are at https://github.com/bigbluebutton/bbb-presentation-video/actions/workflows/package.yml?query=branch%3A${RELEASE}
|
|
MSG
|
|
curl -Lf -o bbb-presentation-video.zip "https://github.com/bigbluebutton/bbb-presentation-video/releases/download/${RELEASE}/ubuntu-20.04.zip"
|
|
rm -rf bbb-presentation-video
|
|
unzip -o bbb-presentation-video.zip -d bbb-presentation-video
|