Skip to content

Commit

Permalink
fix both git log grep commands
Browse files Browse the repository at this point in the history
  • Loading branch information
nlsandler committed Aug 19, 2024
1 parent 6daf802 commit fc46909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Get commit hash
run: |
git log --grep "chapter $CHAPTER\b" -i --format='%H' -n 1
commit=$(git log --grep "chapter $CHAPTER" -i --format='%H' -n 1)
commit=$(git log --grep "chapter $CHAPTER\b" -i --format='%H' -n 1)
echo "commit=$commit" >> $GITHUB_ENV
- name: Check out NQCC at chapter ${{ inputs.chapter }}
Expand Down

0 comments on commit fc46909

Please sign in to comment.