-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
78 lines (67 loc) · 3.13 KB
/
action.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: 'Debugging with vscode'
description: 'Debug your GitHub Actions by Accessing via Browser based VS Code'
branding:
icon: terminal
color: 'black'
author: 'Fawaz Ahmed'
# Define your inputs here.
inputs:
token:
description: 'Set token to access the VS Code. Default value is root'
required: false
default: 'root'
# Define your inputs here.
runs:
using: "composite"
steps:
- name: Install dependencies and run commands in windows
if: ${{ contains(runner.os, 'windows') }}
shell: bash
run: |
urlpart=`node -e "console.log(process.arch)"`
curl -Lk "https://update.code.visualstudio.com/latest/cli-win32-$urlpart/stable" --output code.zip
7z x -y code.zip
mv code.exe ..
rm -rf code.zip
curl -f -L -o ../cloudflared.exe https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-amd64.exe
../code.exe serve-web --port 8391 --connection-token "${{ inputs.token }}" 1> /dev/null 2>&1 &
../cloudflared.exe tunnel --url http://localhost:8391 > ../mylog.txt 2>&1 &
- name: Install dependencies and run commands in linux
if: ${{ contains(runner.os, 'linux') }}
shell: bash
run: |
sudo apt-get update -y
wget https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-`dpkg --print-architecture`.deb
sudo apt install -y ./cloudflared-linux-`dpkg --print-architecture`.deb
rm ./cloudflared-linux-`dpkg --print-architecture`.deb
urlpart=`node -e "process.arch == 'arm' ? console.log('armhf') : console.log(process.arch)"`
curl -Lk "https://update.code.visualstudio.com/latest/cli-linux-$urlpart/stable" --output code.tar.gz
tar -xvzf code.tar.gz -C ../
rm -rf code.tar.gz
chmod 777 ../code
../code serve-web --port 8391 --connection-token ${{ inputs.token }} 1> /dev/null 2>&1 &
cloudflared tunnel --url http://localhost:8391 > ../mylog.txt 2>&1 &
- name: Install dependencies and run commands in macOS
if: ${{ contains(runner.os, 'macos') }}
shell: bash
run: |
[[ `uname -m` = arm64 ]] && archval="arm64" || archval="amd64"
wget -O ../file.tgz https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-darwin-$archval.tgz
tar -xvzf ../file.tgz -C ../
chmod 777 ../cloudflared
urlpart=`node -e "console.log(process.arch)"`
curl -Lk "https://update.code.visualstudio.com/latest/cli-darwin-$urlpart/stable" --output code.zip
7z x -y code.zip
mv code ..
rm -rf code.zip
chmod 777 ../code
../code serve-web --port 8391 --connection-token ${{ inputs.token }} 1> /dev/null 2>&1 &
../cloudflared tunnel --url http://localhost:8391 > ../mylog.txt 2>&1 &
- name: Get Script
shell: bash
run: |
curl -f -L -o ../print-path.js https://cdn.jsdelivr.net/gh/fawazahmed0/action-debug-vscode@main/print-path.js
- name: wait for continue file to exist
shell: bash
run: |
while [ ! -f ./continue ]; do sleep 5; echo `node ../print-path.js`; done