Skip to content

Commit

Permalink
ci(security): fix syntax error in env set command
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed May 24, 2023
1 parent 944dfdf commit a07642c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Checking if user is a trusted bot
run: |
echo "User is a trusted bot user."
echo "IS_BOT_USER=1 >> $GITHUB_ENV
echo "IS_BOT_USER=1" >> $GITHUB_ENV
- if: env.IS_BOT_USER != 1
uses: tspascoal/get-user-teams-membership@v2
Expand All @@ -32,7 +32,7 @@ jobs:
name: No need to check the cache integrity
run: |
echo "User is a member of the Snowball engineering team or a trusted bot user."
echo "SKIP_INTEGRITY_CHECK=1 >> $GITHUB_ENV
echo "SKIP_INTEGRITY_CHECK=1" >> $GITHUB_ENV
- if: env.SKIP_INTEGRITY_CHECK != 1
uses: actions/checkout@v3
Expand Down

0 comments on commit a07642c

Please sign in to comment.