Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit 0519968

Browse files
committed
2.5.2
Frankly I shouldn't be allowed to interact with JS stuff. Somebody please become maintainer of this.
1 parent a610044 commit 0519968

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## 2.5.2 - 2026-03-16
3+
- Actually fix last botched release
4+
25
## 2.5.1 - 2026-03-16
36
- Fix the last botched release
47

dist/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30992,7 +30992,7 @@ function resolve(input) {
3099230992
async function run() {
3099330993
try {
3099430994
const paths = resolve(getInput('files', { required: false }) ||
30995-
getInput('file', { required: true }));
30995+
getInput('file', { required: false }));
3099630996
const args = getInput('args');
3099730997
const strip = getInput('strip') || 'true';
3099830998
const strip_args = getInput('strip_args');
@@ -31022,6 +31022,7 @@ async function run() {
3102231022
throw error;
3102331023
}
3102431024
}
31025+
run();
3102531026

3102631027
var __webpack_exports__run = __webpack_exports__.e;
3102731028
export { __webpack_exports__run as run };

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "upx-action",
3-
"version": "2.5.0",
3+
"version": "2.5.2",
44
"type": "module",
55
"private": true,
66
"description": "Strip and run UPX on executables",

src/main.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export async function run(): Promise<void> {
5555
try {
5656
const paths = resolve(
5757
core.getInput('files', {required: false}) ||
58-
core.getInput('file', {required: true})
58+
core.getInput('file', {required: false})
5959
)
6060

6161
const args = core.getInput('args')
@@ -92,3 +92,5 @@ export async function run(): Promise<void> {
9292
throw error
9393
}
9494
}
95+
96+
run()

0 commit comments

Comments
 (0)