diff --git a/file.txt b/file.txt index 32b1f85..99e36e9 100644 --- a/file.txt +++ b/file.txt @@ -1,25 +1,26 @@ name: CI -on: [push, workflow_dispatch] +on: + push: + workflow_dispatch: jobs: build: - runs-on: windows-latest - steps: - - name: Download - run: Invoke-WebRequest https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-windows-amd64.zip -OutFile ngrok.zip - - name: Extract + - name: Download ngrok + run: Invoke-WebRequest https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip -OutFile ngrok.zip + - name: Extract ngrok run: Expand-Archive ngrok.zip - - name: Auth + - name: Authenticate with ngrok 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 "P@ssw0rd!" -Force) - - name: Create Tunnel - run: .\ngrok\ngrok.exe tcp 3389 \ No newline at end of file + - name: Enable Remote Desktop + 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 + Set-LocalUser -Name "runneradmin" -Password (ConvertTo-SecureString -AsPlainText "P@ssw0rd!" -Force) + - name: Create ngrok tunnel to remote desktop + run: .\ngrok\ngrok.exe tcp 3389