-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (33 loc) · 922 Bytes
/
studio_adder.yml
File metadata and controls
33 lines (33 loc) · 922 Bytes
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: "Studio Adder"
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Verify pip installation
run: which pip
- name: Verify npm installation
run: which npm
- name: Install dependencies
run: |
pip install -r requirements.txt
npm install
- name: Run Python script
run: python studioadder.py
env:
UNRELATED_PASSWORD: ${{ secrets.UNRELATED_PASSWORD }}
TCC_SESSION_ID: ${{ secrets.TCC_SESSION_ID }}
TCC_X_TOKEN: ${{ secrets.TCC_X_TOKEN }}}}
UR_SESSION_ID: ${{ secrets.UR_SESSION_ID }}
UR_X_TOKEN: ${{ secrets.UR_X_TOKEN }}