forked from TryGhost/action-deploy-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 827 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: 'Deploy Ghost Theme Fork'
description: 'Build & deploy a theme to your Ghost site'
branding:
icon: 'cloud-lightning'
color: 'gray-dark'
inputs:
api-url:
description: 'Ghost Admin API Url'
required: true
api-key:
description: 'Ghost Admin API Key'
required: true
exclude:
description: 'Files or folders to exclude (space-separated list)'
required: false
theme-name:
description: 'A custom theme name that overrides the default name in package.json'
required: false
file:
description: 'Path to a built zip file. If this is included, the `exclude` and `theme-name` options are ignored'
required: false
working-directory:
description: 'A custom directory to zip when a theme is in a subdirectory'
required: false
runs:
using: 'node20'
main: 'dist/index.js'