Ubuntu RDP #1
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
name: Ubuntu RDP | |
on: | |
workflow_dispatch: | |
inputs: | |
hostname: | |
description: 'Enter Hostname:' | |
required: false | |
default: ubuntu | |
type: string | |
username: | |
description: 'Enter Username:' | |
required: false | |
default: user | |
type: string | |
password: | |
description: 'Enter Password:' | |
required: false | |
default: root | |
type: string | |
Pin: | |
description: 'Enter a Pin (more or equal to 6 digits)' | |
required: false | |
default: 123456 | |
type: number | |
CRP: | |
description: 'Visit at http://remotedesktop.google.com/headless and, copy the command after authentication' | |
required: false | |
type: string | |
env: | |
hostname: ${{ inputs.hostname }} | |
username: ${{ inputs.username }} | |
password: ${{ inputs.password }} | |
Pin: ${{ inputs.Pin }} | |
CRP: ${{ inputs.CRP }} | |
jobs: | |
build: | |
name: Deploy Server | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Cleanup Junk | |
run: | | |
curl -L -o Cleanup.sh \ | |
https://raw.githubusercontent.com/Diwash0007/Ubuntu_RDP/main/Cleanup.sh | |
chmod +x Cleanup.sh | |
./Cleanup.sh | |
- name: Create Server | |
run: | | |
curl -L -o Ubuntu_RDP.sh \ | |
https://raw.githubusercontent.com/Diwash0007/Ubuntu_RDP/main/Ubuntu_RDP.sh | |
chmod +x Ubuntu_RDP.sh | |
./Ubuntu_RDP.sh | |
- name: Keep Running | |
run: | | |
curl -L -o Keep_Running.sh \ | |
https://raw.githubusercontent.com/Diwash0007/Ubuntu_RDP/main/Keep_Running.sh | |
chmod +x Keep_Running.sh | |
./Keep_Running.sh |