From 7800316ff0989f11c599a1cdaab948e4c78cedef Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Fri, 22 Jan 2021 13:24:30 +0200 Subject: [PATCH] Update buildAndDeploy.yml --- .github/workflows/buildAndDeploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/buildAndDeploy.yml b/.github/workflows/buildAndDeploy.yml index 889968620c..87e4c81467 100644 --- a/.github/workflows/buildAndDeploy.yml +++ b/.github/workflows/buildAndDeploy.yml @@ -25,9 +25,11 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - - name: check bulter secret - run: echo ${{ secrets.BUTLER_API_KEY }} + - uses: actions/github-script@v3 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + console.log(github.event) # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2