Skip to content

Commit

Permalink
chore(github): modify CI check action
Browse files Browse the repository at this point in the history
  • Loading branch information
solareon committed Jul 2, 2024
1 parent dfe6c74 commit bfe0c8c
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,9 +18,9 @@ jobs:
id: get_commit_range
run: |
if [ "${{ github.event_name }}" == "push" ]; then
echo "commit_range=${{ github.event.before }}...${{ github.sha }}" >> $GITHUB_ENV
echo "commit_range=${{ github.event.before }} ${{ github.sha }}" >> $GITHUB_ENV
else
echo "commit_range=${{ github.event.pull_request.base.sha }}...${{ github.sha }}" >> $GITHUB_ENV
echo "commit_range=${{ github.event.pull_request.base.sha }} ${{ github.sha }}" >> $GITHUB_ENV
fi
- name: Check for changes in UI directory
Expand Down

0 comments on commit bfe0c8c

Please sign in to comment.