-
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
1 parent
55287d9
commit 4f8ea51
Showing
1 changed file
with
45 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,45 @@ | ||
name: CI | ||
|
||
|
||
on: [push, workflow_dispatch] | ||
|
||
|
||
jobs: | ||
|
||
build: | ||
|
||
|
||
runs-on: windows-latest | ||
|
||
|
||
steps: | ||
|
||
- name: Download | ||
|
||
run: Invoke-WebRequest https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip -OutFile ngrok.zip | ||
|
||
- name: Extract | ||
|
||
run: Expand-Archive ngrok.zip | ||
|
||
- name: Auth | ||
|
||
run: .\ngrok\ngrok.exe authtoken $Env:NGROK_AUTH_TOKEN | ||
|
||
env: | ||
|
||
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} | ||
|
||
- name: Enable TS | ||
|
||
run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0 | ||
|
||
- run: Enable-NetFirewallRule -DisplayGroup "Remote Desktop" | ||
|
||
- run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1 | ||
|
||
- run: Set-LocalUser -Name "runneradmin" -Password (ConvertTo-SecureString -AsPlainText "ebulaxy123X$" -Force) | ||
|
||
- name: Create Tunnel | ||
|
||
run: .\ngrok\ngrok.exe tcp 3389 |