mirror of
https://github.com/jayanta525/github-pages-directory-listing.git
synced 2025-06-18 14:15:33 -04:00
19 lines
378 B
YAML
19 lines
378 B
YAML
# action.yml
|
|
name: 'Github Pages Directory Listing'
|
|
description: 'Github Action to generate directory listing index for Github Pages'
|
|
|
|
author: 'jayanta525'
|
|
branding:
|
|
color: 'green'
|
|
icon: 'upload-cloud'
|
|
|
|
inputs:
|
|
FOLDER:
|
|
description: 'folder to start index generations'
|
|
required: true
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.FOLDER }}
|