2024-09-22 21:21:19 +00:00
|
|
|
name: 'Deploy to Skynet - User Edition'
|
|
|
|
description: 'Deploy to your own public_html '
|
|
|
|
inputs:
|
|
|
|
ssh_key:
|
|
|
|
description: 'Pass in secrets.SSH_KEY'
|
|
|
|
required: true
|
|
|
|
username:
|
2024-09-23 10:22:53 +00:00
|
|
|
description: 'Pass in your skynet username'
|
2024-09-23 19:51:16 +00:00
|
|
|
required: true
|
2024-09-22 21:21:19 +00:00
|
|
|
folder:
|
|
|
|
description: 'Folder to upload, normally build'
|
|
|
|
required: true
|
|
|
|
destination:
|
|
|
|
description: 'location within public_html to deploy to'
|
|
|
|
required: false
|
|
|
|
default: ""
|
|
|
|
runs:
|
2024-09-23 19:51:16 +00:00
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
|
|
|
args:
|
|
|
|
- ${{ inputs.username }}
|
|
|
|
- ${{ inputs.ssh_key }}
|
|
|
|
- ${{ inputs.folder }}
|
|
|
|
- ${{ github.destination }}
|