From f25806eeff2df5e521eb51102996b27660344e1a Mon Sep 17 00:00:00 2001 From: Akash Singh Date: Thu, 4 Apr 2024 02:19:00 +0530 Subject: [PATCH] Set env data --- .github/workflows/deploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bb83c52..9bbc9a3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Needed for showLastUpdateTime to work fetch-depth: 0 @@ -29,10 +29,12 @@ jobs: # echo ${{ secrets.REACT_APP_FOLLOWERS_ACCESS_KEY }} - name: Set Variables Data + id: set-env-data env: - REACT_APP_FOLLOWERS_ACCESS_KEY: ${{ vars.REACT_APP_FOLLOWERS_ACCESS_KEY }} + REACT_APP_FOLLOWERS_ACCESS_KEY: ${{ secrets.REACT_APP_FOLLOWERS_ACCESS_KEY }} run: | - echo ${{ vars.REACT_APP_FOLLOWERS_ACCESS_KEY }} + echo $REACT_APP_FOLLOWERS_ACCESS_KEY + timeout-minutes: 5 - name: Install dependencies run: |