Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Dec 9, 2023
1 parent 914c430 commit 4ed72bf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,10 @@ jobs:
- name: Get short commit SHA
run: |
if [ "${{ github.event_name }}" = "pull_request" ]; then
echo "SHA=${{ github.event.pull_request.head.sha }}"
SHA="${{ github.event.pull_request.head.sha }}"
else
echo "SHA=${{ github.sha }}"
SHA="${{ github.sha }}"
fi
echo SHA
echo $SHA
echo "SHA=$(git rev-parse --short $SHA)" >> $GITHUB_ENV
Expand Down

0 comments on commit 4ed72bf

Please sign in to comment.