Skip to content

Commit

Permalink
hmm creds not showing up for CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
adueck committed Nov 28, 2024
1 parent d702bb7 commit 2024ad7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions functions/lib/env-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { Context } from "hono";
import { env } from "hono/adapter";

export type FEnvironment = {
AWS_ACCESS_KEY_ID: string;
AWS_SECRET_ACCESS_KEY: string;
LINGDOCS_DICTIONARY_SPREADSHEET: string;
LINGDOCS_DICTIONARY_SHEET_ID: string;
LINGDOCS_SERVICE_ACCOUNT_EMAIL: string;
Expand All @@ -13,6 +15,8 @@ export type FEnvironment = {
};

export const environment: FEnvironment = {
AWS_ACCESS_KEY_ID: process.env.AWS_ACCESS_KEY_ID || "",
AWS_SECRET_ACCESS_KEY: process.env.AWS_SECRET_ACCESS_KEY || "",
LINGDOCS_DICTIONARY_SPREADSHEET:
process.env.LINGDOCS_DICTIONARY_SPREADSHEET || "",
LINGDOCS_DICTIONARY_SHEET_ID: process.env.LINGDOCS_DICTIONARY_SHEET_ID || "",
Expand Down

0 comments on commit 2024ad7

Please sign in to comment.