Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos #57

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main.ts
Expand Up @@ -17,7 +17,7 @@ async function run() {
const keyStorePassword = core.getInput('keyStorePassword');
const keyPassword = core.getInput('keyPassword');

console.log(`Preparing to sign key @ ${releaseDir} with signing key`);
console.log(`Preparing to sign file(s) @ ${releaseDir} with signing key`);

// 1. Find release files
const releaseFiles = io.findReleaseFiles(releaseDir);
Expand Down Expand Up @@ -55,7 +55,7 @@ async function run() {
core.exportVariable(`NOF_SIGNED_RELEASE_FILES`, `${signedReleaseFiles.length}`);
core.setOutput(`nofSignedReleaseFiles`, `${signedReleaseFiles.length}`);

// When there is one and only one signed release file, stoire it in a specific variable + output.
// When there is one and only one signed release file, store it in a specific variable + output.
if (signedReleaseFiles.length == 1) {
core.exportVariable(`SIGNED_RELEASE_FILE`, signedReleaseFiles[0]);
core.setOutput('signedReleaseFile', signedReleaseFiles[0]);
Expand Down