From aacccfa64d7861c5d019ebfe0f48311ecab3c729 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 20 Aug 2023 16:18:24 -0400 Subject: [PATCH] Pass in missing env vars to `build_package.sh` --- .github/workflows/ci-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 73b72d91a0..2f184995e6 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1020,7 +1020,7 @@ jobs: - name: Execute Build Script (Unsigned) if: (!(github.event_name == 'push' && contains(github.event.head_commit.message, '[TGSDeploy]') && (github.event.ref == 'refs/heads/master' || github.event.ref == 'refs/heads/dev'))) - run: sudo build/package/deb/build_package.sh + run: sudo -E build/package/deb/build_package.sh - name: Execute Build Script (Signed) if: (github.event_name == 'push' && contains(github.event.head_commit.message, '[TGSDeploy]') && (github.event.ref == 'refs/heads/master' || github.event.ref == 'refs/heads/dev'))