Skip to content

Commit

Permalink
Fix typo when setting env var
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHendrickson committed Dec 6, 2023
1 parent fcbd159 commit afe9208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/validate-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Count commits in candidate ref that are not in protected ref
id: all-cherries
run: |
$CHERRY_FILE=$(mktemp -t cherries.XXXXX)
CHERRY_FILE=$(mktemp -t cherries.XXXXX)
git cherry -v "$PROTECTED_REF" "$DEPLOYMENT_REF" > $CHERRY_FILE
echo "count=$(cat $CHERRY_FILE | wc -l)" >> $GITHUB_OUTPUT
echo "file=$CHERRY_FILE" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit afe9208

Please sign in to comment.