Skip to content

Commit

Permalink
fix: GitHub environment variable in pixel printer
Browse files Browse the repository at this point in the history
- Replaced "GITHUB_ACTION_REPOSITORY" environment variable usage with correct environment variable: `GITHUB_REPOSITORY`
  • Loading branch information
jasonjgardner committed May 12, 2022
1 parent a1dc19a commit 3679709
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/printer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default async function print(palette: BlockEntry[], chunks = 6) {
}
}

const actionRepo = (Deno.env.get("GITHUB_ACTION_REPOSITORY") || "").split(
const actionRepo = (Deno.env.get("GITHUB_REPOSITORY") || "").split(
"/",
2,
);
Expand Down

0 comments on commit 3679709

Please sign in to comment.