From 87dd83e43710d42d2402d9edba592e0264eb815e Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 19 Oct 2023 19:28:53 +0000 Subject: [PATCH] ci: fix environment variables Provide environment variables for deploying docs site --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70e932d59082..3d8bd9065b83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -292,6 +292,9 @@ jobs: run: yarn ci-push-deploy-docs-app - uses: ./.github/actions/slack if: ${{ failure() && github.event_name == 'push' }} + env: + CIRCLE_BRANCH: ${{ github.ref_name }} + CIRCLE_SHA1: ${{ github.sha }} with: JOB_NAME: 'Docs site deployment' SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}