Skip to content

Commit

Permalink
Fixed Syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippSchmelter committed Oct 2, 2024
1 parent c205a34 commit 0d7d256
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ jobs:

- name: Get Commit Hash
id: get_commit
run: echo "::set-output name=hash::$(git rev-parse HEAD)"
run: |
COMMIT_HASH=$(git rev-parse HEAD)
echo "::set-output name=hash::$COMMIT_HASH"
- name: Display Commit Hash
run:
echo "Checked out commit hash: ${{ steps.get_commit.outputs.hash }}"
echo "Checked out commit hash: ${{ steps.get_commit.outputs.hash }}"

0 comments on commit 0d7d256

Please sign in to comment.