Skip to content

Commit

Permalink
Fix typo in environment variable assignment
Browse files Browse the repository at this point in the history
Corrected a typo in the `appId` environment variable assignment by removing an extraneous single quote.
  • Loading branch information
gentlementlegen committed Oct 13, 2024
1 parent 76a691a commit 24a1c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ runs:
const fs = require('fs');
const path = require('path');
const appId = process.env.APP_ID';
const appId = process.env.APP_ID;
const privateKey = process.env.APP_PRIVATE_KEY;
const githubToken = process.env.GITHUB_TOKEN;
const useAppAuth = appId && privateKey;
Expand Down

0 comments on commit 24a1c60

Please sign in to comment.