-
Notifications
You must be signed in to change notification settings - Fork 11
43 lines (38 loc) · 1.12 KB
/
yaml-scripts-demo.yaml
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
37
38
39
40
41
42
43
name: Yaml Scripts Demo
on:
workflow_dispatch:
inputs:
tag:
description: 'The tag name of @midscene/cli'
required: true
default: 'latest'
output_folder:
description: 'Midscene report directory'
required: true
default: 'yaml-scripts-demo/midscene_run/report/'
push:
branches:
- main
jobs:
run_script:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run script
env:
OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
MIDSCENE_DEBUG_AI_PROFILE: 1
run: |
npm i -g @midscene/cli@${{ github.event.inputs.tag }}
cd yaml-scripts-demo
midscene ./midscene-scripts/
- name: List directory contents
run: ls -R ${{ github.workspace }}
- name: Upload output folder
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: Midscene Report
path: ${{ github.workspace }}/${{ github.event.inputs.output_folder }}