Skip to content

Commit cd2fa3e

Browse files
committed
fix: Correct parameter position
1 parent c63691d commit cd2fa3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10579,7 +10579,7 @@ function getArch() {
1057910579
};
1058010580
return mappings[arch] || arch;
1058110581
}
10582-
async function getRelease(tag, token) {
10582+
async function getRelease(token, tag) {
1058310583
try {
1058410584
const octokit = new github.getOctokit(token);
1058510585
let release;

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function getArch() {
3434
return mappings[arch] || arch;
3535
}
3636

37-
async function getRelease(tag, token) {
37+
async function getRelease(token, tag) {
3838
try {
3939
const octokit = new github.getOctokit(token);
4040

0 commit comments

Comments
 (0)