Skip to content

Commit

Permalink
Merge pull request #112 from league/fix-typo
Browse files Browse the repository at this point in the history
Fix minor typo in message
  • Loading branch information
domenkozar committed Mar 30, 2022
2 parents 06107da + e4a9149 commit 257f7af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main/index.js
Expand Up @@ -1092,7 +1092,7 @@ function upload() {
yield exec.exec(`${__dirname}/push-paths.sh`, [cachixExecutable, cachixArgs, name, pathsToPush, pushFilter]);
}
else {
core.info('Pushing is disabled as signingKey nor authToken are set (or are emtpy?) in your YAML file.');
core.info('Pushing is disabled as signingKey nor authToken are set (or are empty?) in your YAML file.');
}
}
catch (error) {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Expand Up @@ -61,7 +61,7 @@ async function upload() {
} else if (signingKey !== "" || authToken !== "") {
await exec.exec(`${__dirname}/push-paths.sh`, [cachixExecutable, cachixArgs, name, pathsToPush, pushFilter]);
} else {
core.info('Pushing is disabled as signingKey nor authToken are set (or are emtpy?) in your YAML file.');
core.info('Pushing is disabled as signingKey nor authToken are set (or are empty?) in your YAML file.');
}
} catch (error) {
core.setFailed(`Action failed with error: ${error}`);
Expand Down

0 comments on commit 257f7af

Please sign in to comment.