We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f04b5d commit 2e00ceaCopy full SHA for 2e00cea
.github/workflows/build-specification.yml
@@ -0,0 +1,33 @@
1
+name: OpenTimelineIO-Specification
2
+
3
+on:
4
+ push:
5
+ branches: [ 'main' ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - run: sudo apt-get install graphviz
15
+ - uses: actions/checkout@v2
16
+ with:
17
+ submodules: 'recursive'
18
+ - uses: actions/setup-node@v2
19
20
+ node-version: '10'
21
+ - run: |
22
+ npm install
23
+ npm run build
24
+ - uses: actions/upload-artifact@v2
25
26
+ name: documentation
27
+ path: |
28
+ build/
29
+ !build/otio.schema.json
30
31
32
+ name: json-schmea
33
+ path: build/otio.schema.json
0 commit comments