Fix minor typo in message

Just happened to notice it in my log.
This commit is contained in:
Christopher League 2022-03-24 12:12:36 -04:00
commit e4a9149609
2 changed files with 2 additions and 2 deletions

2
dist/main/index.js vendored
View file

@ -1090,7 +1090,7 @@ function upload() {
yield exec.exec(`${__dirname}/push-paths.sh`, [cachixExecutable, name, pushFilter]); yield exec.exec(`${__dirname}/push-paths.sh`, [cachixExecutable, name, pushFilter]);
} }
else { 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) { catch (error) {

View file

@ -59,7 +59,7 @@ async function upload() {
} else if (signingKey !== "" || authToken !== "") { } else if (signingKey !== "" || authToken !== "") {
await exec.exec(`${__dirname}/push-paths.sh`, [cachixExecutable, name, pushFilter]); await exec.exec(`${__dirname}/push-paths.sh`, [cachixExecutable, name, pushFilter]);
} else { } 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) { } catch (error) {
core.setFailed(`Action failed with error: ${error}`); core.setFailed(`Action failed with error: ${error}`);