Skip to content

Commit

Permalink
adding missing ioncube inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
MuriloChianfa committed Oct 24, 2024
1 parent 4b11138 commit 1bb90a3
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v2

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

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

- name: IonCube Encode Callback File
uses: MuriloChianfa/ioncube-encoder-action@v2.0.0
uses: MuriloChianfa/ioncube-encoder-action@v2.1.1
# If you're dont using trial version you need to setup the ioncube download url
# env:
# IONCUBE_DOWNLOAD_URL: ${{ secrets.IONCUBE_DOWNLOAD_URL }}
Expand Down
35 changes: 35 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,31 @@ inputs:
required: false
default: 'encrypted'
type: string
create-target:
description: 'Creates the target file/directory if not exists'
required: false
default: false
type: boolean
replace-target:
description: 'Replaces the target file/directory if not exists'
required: false
default: false
type: boolean
copy:
description: 'A pattern to copy files to output directory'
required: false
default: ''
type: string
ignore:
description: 'A pattern to ignore files to output directory'
required: false
default: ''
type: string
skip:
description: 'A pattern to skip files to output directory'
required: false
default: ''
type: string

# Reflection API
allow-reflection:
Expand Down Expand Up @@ -93,6 +118,16 @@ inputs:
options:
- 'more'
- 'max'
obfuscate:
description: 'PHP entities to obfuscate'
required: false
default: 'none'
type: string
obfuscation-key:
description: 'Key to obfuscation method'
required: false
default: ''
type: string

# Output customizations
no-doc-comments:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ioncube-encoder-action",
"description": "Github action to automate IonCube encoding for your PHP project.",
"version": "2.0.0",
"version": "2.1.1",
"author": "MuriloChianfa <murilo.chianfa@outlook.com>",
"private": true,
"homepage": "https://github.com/MuriloChianfa/ioncube-encoder-action",
Expand Down

0 comments on commit 1bb90a3

Please sign in to comment.