-
-
Notifications
You must be signed in to change notification settings - Fork 8
45 lines (35 loc) · 969 Bytes
/
manual.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
37
38
name: "Manual"
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
env:
DEBUG: 1
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
VM_RELEASE: ${{ secrets.VM_RELEASE }}
SEC_VBOX : ${{ secrets.SEC_VBOX }}
steps:
- uses: actions/checkout@v3
- uses: vmactions/cf-tunnel@v0
id: tunnel
with:
protocol: http
port: 8000
- name: Run vnc tunnel
id: test
uses: vmactions/[email protected]
with:
protocol: tcp
port: 5900
- name: Sleep
run: |
for i in $(seq 1 10) ; do echo $i; sleep 1; done
touch /tmp/keepalive
echo "====================================="
echo "please loin the SSH bellow, and run: "
echo "bash run.sh importVM"
echo "bash run.sh onBeforeStartVM "
echo "bash run.sh startVM "
echo "====================================="
- uses: neilpang/debugger-action@master