From 3679709a1bdd5b54f059eb059209e812136590d8 Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 11 May 2022 20:39:35 -0500 Subject: [PATCH] fix: GitHub environment variable in pixel printer - Replaced "GITHUB_ACTION_REPOSITORY" environment variable usage with correct environment variable: `GITHUB_REPOSITORY` --- src/components/printer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/printer.ts b/src/components/printer.ts index 3dd61293..7224148a 100644 --- a/src/components/printer.ts +++ b/src/components/printer.ts @@ -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, );