Skip to content

Commit

Permalink
fix(ci): undefined ORIGIN env in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
conradbekondo committed Jan 19, 2025
1 parent 5056a6a commit 20f02d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/branch-deploys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
DATABASE_URL: ${{ secrets.STAGING_DB }}
SYSTEM_WALLET: ${{ secrets.STAGING_SYSTEM_WALLET }}
SYSTEM_STARTING_BALANCE: ${{ secrets.STAGING_SYSTEM_STARTING_BALANCE }}
ORIGIN: https://staging--tellthem.netlify.app
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
7 changes: 3 additions & 4 deletions logging/common.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import winston from 'winston';
import Transport from 'winston-transport';
import { Logtail } from '@logtail/node';
import { from, retry } from 'rxjs';
import { hostname } from 'node:os';
import DatadogWinston from 'datadog-winston';
import { hostname } from 'node:os';
import winston from 'winston';
import Transport from 'winston-transport';

class LogTailTransport extends Transport {
private logTail: Logtail;
Expand Down

0 comments on commit 20f02d0

Please sign in to comment.