-
Notifications
You must be signed in to change notification settings - Fork 24
33 lines (30 loc) · 924 Bytes
/
demo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Deploy to demo site
on:
push:
branches: ['main']
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: build site
run: |
npm install
npm run build:demo
env:
BROADCASTER_URL: 'https://broadcaster.lab.sto.eyevinn.technology:8443/broadcaster'
ICE_SERVERS: ${{ secrets.DEMO_ICE_SERVERS }}
- name: deploy
uses: jakejarvis/[email protected]
with:
args: --follow-symlinks --delete
env:
AWS_S3_BUCKET: 'origin-web-webrtc'
AWS_ACCESS_KEY_ID: ${{ secrets.S3_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.S3_AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-north-1'
SOURCE_DIR: 'dist-demo/'