From 1c55ce41bed9646db6f1cb018620a61cf5d0b472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=B3ricz=20Gerg=C5=91?= Date: Mon, 11 Nov 2024 10:32:17 +0100 Subject: [PATCH] feat(ci): add sentry auth token to builds --- .github/workflows/deploy-image.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-image.yml b/.github/workflows/deploy-image.yml index 02eb4cc5..c18c7a71 100644 --- a/.github/workflows/deploy-image.yml +++ b/.github/workflows/deploy-image.yml @@ -2,6 +2,7 @@ name: Deploy Images to GHCR env: DOTNET_VERSION: '6.0.x' + SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} on: push: @@ -28,5 +29,5 @@ jobs: - name: 'Build Inventory Image' run: | - docker build . --tag ghcr.io/mendableai/firecrawl:latest + docker build . --tag ghcr.io/mendableai/firecrawl:latest --secret id=SENTRY_AUTH_TOKEN docker push ghcr.io/mendableai/firecrawl:latest \ No newline at end of file