Skip to content

Commit 085a1dd

Browse files
authored
Merge pull request #45 from koke1997/fix-github-pages-deployment
Fix GitHub Pages deployment
2 parents 838c32f + 3d15afb commit 085a1dd

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: sbt compile
3232

3333
- name: Build frontend
34-
run: sbt fullOptJS
34+
run: sbt stage
3535

3636
- name: Deploy to GitHub Pages
3737
uses: peaceiris/actions-gh-pages@v3

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ jobs:
506506
run: sbt compile
507507

508508
- name: Build frontend
509-
run: sbt fullOptJS
509+
run: sbt stage
510510

511511
- name: Deploy to GitHub Pages
512512
uses: peaceiris/actions-gh-pages@v3
@@ -900,6 +900,7 @@ The project is now ready for release as a site for testing webcam functionality.
900900
<option value="hls">HLS</option>
901901
<option value="dash">DASH</option>
902902
<option value="rtmp">RTMP</option>
903+
<option value="adaptive">Adaptive Bitrate</option>
903904
</select>
904905
<select id="user1Camera">
905906
<option value="">Select Camera for User 1</option>

scripts/build_static_files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
sbt compile
77

88
# Generate static files
9-
sbt fullOptJS
9+
sbt stage
1010

1111
# Copy generated files to the docs directory
1212
cp -r target/scala-2.13/scalajs-bundler/main/* docs/

0 commit comments

Comments
 (0)