Skip to content

Commit

Permalink
fix: missing WEBHOOK_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
OXeu committed Jun 8, 2024
1 parent 389f932 commit 03cc686
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
S3_FOLDER: ${{ vars.S3_FOLDER }}
S3_REGION: ${{ vars.S3_REGION }}
S3_FORCE_PATH_STYLE: ${{ vars.S3_FORCE_PATH_STYLE }}
WEBHOOK_SECRET: ${{ vars.WEBHOOK_SECRET }}
run: |
cd Rin/
bun i
Expand Down
2 changes: 2 additions & 0 deletions scripts/migrator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ const S3_CACHE_FOLDER = renv("S3_CACHE_FOLDER", 'cache/')
const S3_FOLDER = renv("S3_FOLDER", 'images/')
const S3_REGION = renv("S3_REGION", "auto")
const S3_FORCE_PATH_STYLE = env("S3_FORCE_PATH_STYLE", "false")
const WEBHOOK_URL = env("WEBHOOK_URL", "")

// Secrets
const accessKeyId = env("S3_ACCESS_KEY_ID")
Expand Down Expand Up @@ -53,6 +54,7 @@ S3_ENDPOINT = "${S3_ENDPOINT}"
S3_ACCESS_HOST = "${S3_ACCESS_HOST}"
S3_BUCKET = "${S3_BUCKET}"
S3_FORCE_PATH_STYLE = "${S3_FORCE_PATH_STYLE}"
WEBHOOK_URL = "${WEBHOOK_URL}"
[placement]
mode = "smart"
Expand Down

0 comments on commit 03cc686

Please sign in to comment.