rcon-action allows you to integrate the rcon protocol into your github workflow.
Server address to connect to
Server port to connect to
- Default: 25575
RCON password
- Default: password
List of commands to execute
I would recommend to use GitHub secrets. Don't use sensitive content such as serveraddress or password in plaintext in your workflow.
uses: wolfigster/rcon-action@v1.0.0
with:
server: 'localhost'
port: '25575'
password: 'p4sSw0rD'
commands: '["reload", "say rcon-action executed successfully"]'