-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 1.26 KB
/
flex-deploy.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
34
35
36
on:
workflow_dispatch
jobs:
deployFlexPlugin:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Setup
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install twilio-cli -g
- run: twilio plugins:install @twilio-labs/plugin-flex@beta
- run: npm install
working-directory: ./plugin-flex-did
- run: cp appConfig.example.js appConfig.js
working-directory: ./plugin-flex-did/public
env:
TWILIO_ACCOUNT_SID: ${{ secrets.ACCOUNT_SID }}
TWILIO_AUTH_TOKEN: ${{ secrets.ACCOUNT_SECRET }}
- run: twilio flex:plugins:deploy --changelog "Deploying flex-did"
working-directory: ./plugin-flex-did
env:
TWILIO_ACCOUNT_SID: ${{ secrets.ACCOUNT_SID }}
TWILIO_AUTH_TOKEN: ${{ secrets.ACCOUNT_SECRET }}
- run: twilio flex:plugins:release --plugin [email protected] --name "Flex DID" --description "Provides direct inward dial functionality."
working-directory: ./plugin-flex-did
env:
TWILIO_ACCOUNT_SID: ${{ secrets.ACCOUNT_SID }}
TWILIO_AUTH_TOKEN: ${{ secrets.ACCOUNT_SECRET }}