deploy/action.yml

18 lines
350 B
YAML
Raw Normal View History

2024-04-27 08:58:57 +00:00
# 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 }}