Files
rsync-deploy-action/action.yml
2023-12-20 10:46:38 +01:00

18 lines
375 B
YAML

name: Deploy to server with rsync
description: An action to build and deploy to a server with rsync over SSH
branding:
icon: upload-cloud
color: blue
inputs:
rsync-arguments:
description: Rsync arguments
required: false
default: --archive --compress --delete --verbose
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.rsync-arguments }}