Skip to content

Commit

Permalink
releasing the new version
Browse files Browse the repository at this point in the history
  • Loading branch information
MuriloChianfa committed Sep 4, 2024
1 parent 7bcffa5 commit 82a527d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: actions/checkout@v2

- name: IonCube Encode
uses: MuriloChianfa/ioncube-encoder-action@v1.0.0
uses: MuriloChianfa/ioncube-encoder-action@v2.0.0
# 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 @@ -81,7 +81,7 @@ jobs:
uses: actions/checkout@v2

- name: IonCube Encode Project
uses: MuriloChianfa/ioncube-encoder-action@v1.0.0
uses: MuriloChianfa/ioncube-encoder-action@v2.0.0
# 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 @@ -95,7 +95,7 @@ jobs:
callback-file: /opt/project/public/ioncube.php

- name: IonCube Encode Callback File
uses: MuriloChianfa/ioncube-encoder-action@v1.0.0
uses: MuriloChianfa/ioncube-encoder-action@v2.0.0
# 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
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": "1.0.0",
"version": "2.0.0",
"author": "MuriloChianfa <murilo.chianfa@outlook.com>",
"private": true,
"homepage": "https://github.com/MuriloChianfa/ioncube-encoder-action",
Expand Down
2 changes: 1 addition & 1 deletion src/inputs/loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const core = require('@actions/core')
* @returns {bool|string} Returns a validated loader input.
*/
module.exports = function validateLoader(standard = true) {
const loader = !(core.getInput('without-loader-check') ?? standard)
const loader = core.getInput('without-loader-check') ?? standard
core.debug(
loader === true
? 'Checking for loader in environment'
Expand Down

0 comments on commit 82a527d

Please sign in to comment.