Skip to content

Commit 6544875

Browse files
authored
Merge pull request #185 from opentok/dev
Merge dev into master
2 parents 16ba173 + 05f29ec commit 6544875

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/metrics.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Aggregit
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
recordMetrics:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: michaeljolley/aggregit@v1
12+
with:
13+
githubToken: ${{ secrets.GITHUB_TOKEN }}
14+
project_id: ${{ secrets.project_id }}
15+
private_key: ${{ secrets.private_key }}
16+
client_email: ${{ secrets.client_email }}
17+
firebaseDbUrl: ${{ secrets.firebaseDbUrl }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ import com.opentok.ArchiveProperties;
190190

191191
Archive archive = opentok.startArchive(sessionId, new ArchiveProperties.Builder()
192192
.outputMode(Archive.OutputMode.INDIVIDUAL)
193-
.build()););
193+
.build());
194194

195195
// Store this archiveId in the database for later use
196196
String archiveId = archive.getId();

0 commit comments

Comments
 (0)