pages-deploy/action.yml
2024-04-20 17:51:34 +02:00

16 lines
322 B
YAML

name: "Deploy to Pages"
description: "Deploy pages that require builds!"
inputs:
folder:
description: "The folder to deploy."
required: true
type: string
runs:
using: "composite"
steps:
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
shell: bash
- run: deploy.sh
shell: bash