-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
44 lines (42 loc) · 1.16 KB
/
action.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: 'WordPress Org Deploy'
description: 'Github Action Pushes WordPress.org Plugins Update'
author: 'varunsridharan'
branding:
icon: 'upload-cloud'
color: 'blue'
inputs:
WORDPRESS_USERNAME:
description: 'WordPress.org Username'
default: ''
WORDPRESS_PASSWORD:
description: 'WordPress.org PASSWORD'
default: ''
SLUG:
description: 'Plugin Slug'
default: ''
VERSION:
description: 'Plugin Version'
default: ''
ASSETS_DIR:
description: 'Plugin Assets Dir For WordPress.org'
default: '.wordpress-org'
IGNORE_FILE:
description: 'WordPress.org Exclude List File'
default: '.wporgignore'
ASSETS_IGNORE_FILE:
description: 'WordPress.org Assets Exclude List File'
default: '.wporgassetsignore'
DIST_LOCATION:
description: 'Provide a path here final zip file can be stored. which can be used by other actions.'
default: 'dist/'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.WORDPRESS_USERNAME }}
- ${{ inputs.WORDPRESS_PASSWORD }}
- ${{ inputs.SLUG }}
- ${{ inputs.VERSION }}
- ${{ inputs.ASSETS_DIR }}
- ${{ inputs.IGNORE_FILE }}
- ${{ inputs.ASSETS_IGNORE_FILE }}