Skip to content

Commit 3093be5

Browse files
committed
fix: github action version
1 parent 5801380 commit 3093be5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- uses: QuiiBz/sherif@v1
5252
# Optionally, you can specify a version and arguments to run Sherif with:
5353
# with:
54-
# version: '1.0.1'
54+
# version: 'v1.0.1'
5555
# args: '--ignore-rule root-package-manager-field'
5656

5757
# Using `npx` to run Sherif

action/index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -32649,6 +32649,11 @@ function run() {
3264932649
if (platform !== 'win32') {
3265032650
yield fsp.chmod(binaryPath, '777');
3265132651
}
32652+
// Add to PATH
32653+
core.addPath(extractedPath);
32654+
// Set output
32655+
core.setOutput('sherif-path', binaryPath);
32656+
core.info('Sherif has been installed successfully');
3265232657
// Prepare arguments
3265332658
const args = additionalArgs.split(' ').filter(arg => arg !== '');
3265432659
// Configure output options to preserve colors
@@ -32658,7 +32663,7 @@ function run() {
3265832663
})
3265932664
};
3266032665
// Execute Sherif
32661-
const exitCode = yield exec.exec(downloadPath, args, options);
32666+
const exitCode = yield exec.exec(binaryPath, args, options);
3266232667
// Handle exit code
3266332668
if (exitCode !== 0) {
3266432669
throw new Error(`Sherif execution failed with exit code ${exitCode}`);

0 commit comments

Comments
 (0)