-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: CI | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
timeout-minutes: 9999 | ||
|
||
steps: | ||
- name: Download Ngrok & NSSM | ||
run: | | ||
Invoke-WebRequest https://raw.githubusercontent.com/charan2004152004/Ngrok-Exe/main/ngrok.exe -OutFile ngrok.exe | ||
Invoke-WebRequest https://raw.githubusercontent.com/Jin-Dev69/Test_Project1/main/Files/nssm.exe -OutFile nssm.exe | ||
- name: Copy NSSM & Ngrok to Windows Directory. | ||
run: | | ||
copy nssm.exe C:\Windows\System32 | ||
copy ngrok.exe C:\Windows\System32 | ||
- name: Connect your NGROK account | ||
run: .\ngrok.exe authtoken $Env:NGROK_AUTH_TOKEN | ||
env: | ||
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} | ||
- name: Download Important Files. | ||
run: | | ||
Invoke-WebRequest https://raw.githubusercontent.com/Jin-Dev69/Test_Project1/main/Files/NGROK-US.bat -OutFile NGROK-US.bat | ||
Invoke-WebRequest https://raw.githubusercontent.com/Jin-Dev69/Test_Project1/main/Files/NGROK-CHECK.bat -OutFile NGROK-CHECK.bat | ||
Invoke-WebRequest https://raw.githubusercontent.com/Jin-Dev69/Test_Project1/main/Files/loop.bat -OutFile loop.bat | ||
- name: Make YML file for NGROK. | ||
run: start NGROK-US.bat | ||
- name: Enable RDP Access. | ||
run: | | ||
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0 | ||
Enable-NetFirewallRule -DisplayGroup "Remote Desktop" | ||
Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1 | ||
- name: Create Tunnel | ||
run: sc start ngrok | ||
- name: Connect to your RDP 2core-7GB Ram. | ||
run: cmd /c NGROK-CHECK.bat | ||
- name: All Done! You can close Tab now! Maximum VM time:6h. | ||
run: cmd /c loop.bat | ||
|
||
|