Skip to content

Commit 40bf9ec

Browse files
committed
fmt and build
1 parent 998623f commit 40bf9ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/github.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export const upload = async (
149149
const [owner, repo] = config.github_repository.split("/");
150150
const { name, size, mime, data: body } = asset(path);
151151
const currentAsset = currentAssets.find(
152-
({ name: currentName }) => currentName == name.replace(' ','.')
152+
({ name: currentName }) => currentName == name.replace(" ", ".")
153153
);
154154
if (currentAsset) {
155155
console.log(`♻️ Deleting previously uploaded asset ${name}...`);
@@ -310,7 +310,7 @@ export const release = async (
310310
return release.data;
311311
} catch (error) {
312312
// presume a race with competing metrix runs
313-
console.log(error.response.data)
313+
console.log(error.response.data);
314314
console.log(
315315
`⚠️ GitHub release failed with status: ${
316316
error.status

0 commit comments

Comments
 (0)