Skip to content

Commit

Permalink
Set env data
Browse files Browse the repository at this point in the history
  • Loading branch information
Akash Singh committed Apr 3, 2024
1 parent 50cc95b commit f25806e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit f25806e

Please sign in to comment.