-
-
Notifications
You must be signed in to change notification settings - Fork 3
44 lines (34 loc) · 968 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
name: "Manual"
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-24.04
env:
DEBUG: 1
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
SEC_VBOX : ${{ secrets.SEC_VBOX }}
steps:
- uses: actions/checkout@v4
- name: Creating web console
uses: vmactions/cf-tunnel@v0
id: tunnel
with:
protocol: http
port: 8000
- name: Run vnc tunnel
id: test
uses: vmactions/ngrok-tunnel@v0
with:
protocol: tcp
port: 5900
- name: Sleep
run: |
for i in $(seq 1 10) ; do echo $i; sleep 1; done
latest=$(cat $(ls conf/solaris-*.conf | tail -1) | grep VM_RELEASE | cut -d = -f 2)
echo "please loging to ssh below, and run:"
echo "============================="
echo "bash build.sh conf/solaris-$latest.conf"
echo "============================="
touch /tmp/keepalive
- uses: neilpang/debugger-action@master