ttpages/action.yml

16 lines
329 B
YAML
Raw Normal View History

2024-08-14 12:16:13 -04:00
---
name: 'TTPages'
description: 'Publish your static web content for TTPages'
2024-08-14 12:16:13 -04:00
inputs:
path:
description: 'The path to content to publish'
required: false
default: 'dist'
2024-08-14 12:16:13 -04:00
runs:
using: 'composite'
steps:
- id: ttpages-action
2024-08-14 12:57:36 -04:00
run: bash $GITHUB_ACTION_PATH/run.sh '${{ inputs.path }}'
2024-08-14 12:16:13 -04:00
shell: bash