Skip to content

Commit 1bb90a3

Browse files
committed
adding missing ioncube inputs
1 parent 4b11138 commit 1bb90a3

File tree

3 files changed

+39
-4
lines changed

3 files changed

+39
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v2
5151

5252
- name: IonCube Encode
53-
uses: MuriloChianfa/ioncube-encoder-action@v2.0.0
53+
uses: MuriloChianfa/ioncube-encoder-action@v2.1.1
5454
# If you're dont using trial version you need to setup the ioncube download url
5555
# env:
5656
# IONCUBE_DOWNLOAD_URL: ${{ secrets.IONCUBE_DOWNLOAD_URL }}
@@ -80,7 +80,7 @@ jobs:
8080
uses: actions/checkout@v2
8181

8282
- name: IonCube Encode Project
83-
uses: MuriloChianfa/ioncube-encoder-action@v2.0.0
83+
uses: MuriloChianfa/ioncube-encoder-action@v2.1.1
8484
# If you're dont using trial version you need to setup the ioncube download url
8585
# env:
8686
# IONCUBE_DOWNLOAD_URL: ${{ secrets.IONCUBE_DOWNLOAD_URL }}
@@ -94,7 +94,7 @@ jobs:
9494
callback-file: /opt/project/public/ioncube.php
9595

9696
- name: IonCube Encode Callback File
97-
uses: MuriloChianfa/ioncube-encoder-action@v2.0.0
97+
uses: MuriloChianfa/ioncube-encoder-action@v2.1.1
9898
# If you're dont using trial version you need to setup the ioncube download url
9999
# env:
100100
# IONCUBE_DOWNLOAD_URL: ${{ secrets.IONCUBE_DOWNLOAD_URL }}

action.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,31 @@ inputs:
6060
required: false
6161
default: 'encrypted'
6262
type: string
63+
create-target:
64+
description: 'Creates the target file/directory if not exists'
65+
required: false
66+
default: false
67+
type: boolean
68+
replace-target:
69+
description: 'Replaces the target file/directory if not exists'
70+
required: false
71+
default: false
72+
type: boolean
73+
copy:
74+
description: 'A pattern to copy files to output directory'
75+
required: false
76+
default: ''
77+
type: string
78+
ignore:
79+
description: 'A pattern to ignore files to output directory'
80+
required: false
81+
default: ''
82+
type: string
83+
skip:
84+
description: 'A pattern to skip files to output directory'
85+
required: false
86+
default: ''
87+
type: string
6388

6489
# Reflection API
6590
allow-reflection:
@@ -93,6 +118,16 @@ inputs:
93118
options:
94119
- 'more'
95120
- 'max'
121+
obfuscate:
122+
description: 'PHP entities to obfuscate'
123+
required: false
124+
default: 'none'
125+
type: string
126+
obfuscation-key:
127+
description: 'Key to obfuscation method'
128+
required: false
129+
default: ''
130+
type: string
96131

97132
# Output customizations
98133
no-doc-comments:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ioncube-encoder-action",
33
"description": "Github action to automate IonCube encoding for your PHP project.",
4-
"version": "2.0.0",
4+
"version": "2.1.1",
55
"author": "MuriloChianfa <[email protected]>",
66
"private": true,
77
"homepage": "https://github.com/MuriloChianfa/ioncube-encoder-action",

0 commit comments

Comments
 (0)