deploy/action.yml
2024-04-27 09:58:57 +01:00

18 lines
350 B
YAML

# action.yml
name: 'Sixohthree Deploy'
description: 'Private deploy pipeline'
inputs:
local_path:
description: 'Local path'
required: false
default: './'
deploy_path:
description: 'Deploy path'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.local_path }}
- ${{ inputs.deploy_path }}