Skip to content

wolfigster/rcon-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rcon-action

rcon-action allows you to integrate the rcon protocol into your github workflow.

Inputs

server (required)

Server address to connect to

port

Server port to connect to

  • Default: 25575

password

RCON password

  • Default: password

commands

List of commands to execute

Recommendation

I would recommend to use GitHub secrets. Don't use sensitive content such as serveraddress or password in plaintext in your workflow.

Example usage

uses: wolfigster/rcon-action@v1.0.0
with:
  server: 'localhost'
  port: '25575'
  password: 'p4sSw0rD'
  commands: '["reload", "say rcon-action executed successfully"]'

Credits