REVOLT GAMER
134 subscribers
118 photos
12 videos
44 files
37 links
Download Telegram
Media is too big
VIEW IN TELEGRAM
Merge Splits Apk using Termux and Apkeditor.jar

java -jar APKEditor-1.3.4.jar m -i "apks_files" -o "crunchyrollmerge_app.apk"
REVOLT GAMER pinned «This channel can’t be displayed because it violated Telegram's Terms of Service.»
on:
workflow_dispatch:

jobs:
setup-ngrok:
runs-on: windows-latest
steps:
- name: Install Ngrok
run: |
choco install ngrok -y # Install Ngrok using Chocolatey
- name: Authenticate Ngrok
run: |
ngrok authtoken ${{ secrets.NGROK_AUTH_TOKEN }} # Authenticate Ngrok with your token
env:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} # Set your Ngrok auth token as a secret in your GitHub repository
- 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
run: |
ngrok tcp 3389 --region=us # Start a TCP tunnel on port 3389 (RDP) in the US region
REVOLT GAMER
on: workflow_dispatch: jobs: setup-ngrok: runs-on: windows-latest steps: - name: Install Ngrok run: | choco install ngrok -y # Install Ngrok using Chocolatey - name: Authenticate Ngrok run: | ngrok…
Certainly! Here's a step-by-step guide to create an RDP (Remote Desktop Protocol) using GitHub Actions:

1. Create a New Repository:
- Go to your GitHub account and create a new repository.
- Name it appropriately (e.g., "MyRDPWorkflow").

2. Add Secrets and Variables:
- In your repository, navigate to Settings.
- Click on Secrets in the left sidebar.
- Add a new secret called NGROK_AUTH_TOKEN and provide your Ngrok authentication token.

3. Create a Workflow:
- In your repository, click on the Actions tab.
- Click on New workflow and choose Set up a workflow yourself.
- Name your workflow file (e.g., rdp.yml).

4. Define the Workflow:
- In the workflow file, add the

5. Save and Commit:
- Save the workflow file and commit it to your repository.

6. Access Your RDP:
- Once the workflow runs (usually after a push to the main branch), go to the Actions tab.
- Click on the endpoint in NGROK Website and find the Ngrok URL (e.g., tcp://0.tcp.ngrok.io:12345).
- Use an RDP client (like Remote Desktop Connection on Windows) to connect to this URL with port 3389.

username: runneradmin
password: P@ssw0rd!

That's it! You've set up an RDP using GitHub Actions. Remember to keep your Ngrok token secure and never share it publicly. 🚀